#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { string S; cin >> S; if (S.length() % 2 == 1) { cout << "NO" << endl; return 0; } string temp1, temp2; temp1 = S.substr(0, S.length() / 2); temp2 = S.substr(S.length() / 2, S.length() / 2); if (temp1 == temp2) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }