提交时间:2025-10-17 15:10:52
运行 ID: 70195
#include <iostream> using namespace std; int main() { char c; cin >> c; if (int(c) % 2 == 1) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }