Run ID:99697

提交时间:2024-11-30 13:10:41

#include<bits/stdc++.h> using namespace std; int main(){ int year,a,b; cin>>year; a=year/100; b=year%100; if(a==b){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }