Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148927 Kevin 2020 C++ Accepted 0 MS 272 KB 183 2026-03-03 14:15:13

Tests(3/3):


Code:

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