#include void main(void){ int a , b; scanf("%d %d",&a,&b); if(a*b%2 == 0){ printf("Even"); }else{ printf("Odd"); } }