1#include <bits/stdc++.h>2 3using namespace std;4 5int main() {6 char x;7 cin >> x;8 if ('0' <= x && x <= '9') {9 cout << "YES";10 } else {11 cout << "NO";12 }13 return 0;14}