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