#include<stdio.h> #include<ctype.h> int main() { char ch; scanf("%c",&ch); if(isalpha(ch)) { printf("YES"); } else printf("NO"); return 0; }