Run ID:88297

提交时间:2024-08-19 10:42:57

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