Run ID:93029
提交时间:2024-10-07 15:50:19
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int q = n / 100 int p = n % 100 if (q == p) { cout << "yes"; } else { cout << "no"; } }