#include int main(){ int a; scanf("%d", &a); if(a%10==0){ printf("Tizzel oszthato"); } if(a%10!=0 && a%5==0){ printf("Ottel oszthato"); } if(a%5!=0 && a<0){ printf("A szam negativ es ottel osztva %d maradekot ad.", a%5); } else { if(a>0 && a%5!=0){ printf("A szam pozitiv de nem oszthato ottel."); } } return 0; }