Untitled
Anonymous
plain_text
11/19/2022 5:51 PM
228 B
14
Indexable
#include <iostream>
#include <string>
using namespace std;
int main() {
string a;
cin >> a;
if (a.size() % 2 == 0) cout << a << ' ' << a;
else cout << "No";
}Editor is loading...