Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146099 c13 2020 C++ Accepted 0 MS 276 KB 183 2026-01-25 21:08:41

Tests(3/3):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char c[4]; cin>>c; if(c[0]==c[2]&&c[1]==c[3])cout<<"YES"<<endl; else cout<<"NO"<<endl; return 0; }