Run ID:88296

提交时间:2024-08-19 10:39:55

#include<bits/stdc++.h> using namespace std; char s[100]; char s2[100]; int main(){ cin >> s; int n = strlen(s); int n2= strlen(s); if(n == n2) { cout << "YES"; } else { cout << "NO"; } return 0; }