Run ID:115507

提交时间:2025-03-30 20:28:25

#include <iostream> using namespace std; int main(){ int year; cin>> year; if( year/100 == year%100) // 8 除以 5 = 1 ……3 cout<<"YES"; else cout<< "NO"; return 0; }