提交时间:2023-12-04 19:19:12

运行 ID: 33009

#include <bits/stdc++.h> using namespace std; int main(){ char c; cin >> c; int x = c; if(x % 2 == 1) { cout << "YES"; } else cout << "NO"; return 0; }