include<iostream> include<cctype> using namespace std; int main(){ char n; while (cin >> n) {if (isalpha(n)) cout << "YES"; else cout << "NO"; } }