#include <stdio.h>

int main(void)
{
	char s = 255;
	if(s==EOF)puts("YES");
	else puts("NO");
	
	
	return 0;
}