#include<stdio.h> int main() { long num; while(scanf("%ld",&num)!= EOF) { if (num % 2 == 0) printf("Even\n"); else printf("Odd\n"); }

}