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