#include <stdio.h>

int main(void) {
	
	int i;
	
	scanf("%d",&i);
	
	if(i % 2 == 0){
		printf("Even");
	}else{
		printf("Odd");
	}
	return 0;
}
