#include <stdio.h>

int main(void) {
	// your code goes here
	
	int x = 56;
	if ((x & 1) == 0) {
		// x is even
		printf("Even");
	}
	else {
    	// x is odd
    	printf("Odd");
	}
	
	return 0;
}
