#include <stdio.h> //记得换行就不会错 int main() { int a; while(scanf("%d\n",&a)!=EOF){ if(a%2==0){ printf("Even\n"); }else{ printf("Odd\n"); } } return 0; }