#include using namespace std; int main() { char c; scanf("%c",&c); if(c>='A' && c<='Z'){ printf("YES"); }else{ printf("NO"); } return 0; }