#include <stdio.h>

int main() {
int a;
scanf("%d",&a);
if(a%2==0)
print("it is even");
else
print("it is odd");
return 0;
}