Run ID:115888
提交时间:2025-04-05 15:22:52
#include <bits/stdc++.h> using namespace std; int main() { int y; cin >> y; if(y % 100 == y/ 100 ) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }