#include <stdio.h>

int main() {
    char a;
    scanf("%c",&a);
    if(a>='A'&&a<='z') printf("YES");
    else printf("NO");
    return 0;
}