#include <stdio.h>

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