Run ID:135302

提交时间:2025-11-03 16:53:00

#include <iostream> using namespace std; int main() { int a; cin >> a; if (a % 2 == 0) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }