Run ID:93025
提交时间:2024-10-07 15:45:03
#include<bits/stdc++.h> using namespace std; int main() { //摘出来 前两位和 后两位 int n; // 2024 / 100 = 20 cin>>n; int q = n/100; int p = n % 100; if(q == p){ cout<<"YES"; }else{ cout<<"NO"; } }