#include <stdio.h>
int main(){
	int score;
	scanf("%d",&score);
	if(score%2==0){
		printf("짝수다");
	}
	return 0;
}