Untitled

 avatar
unknown
plain_text
2 years ago
203 B
3
Indexable
#include <iostream>
#include <cmath>
#include <string>
#include <vector>
using namespace std;


int main()
{
	string s;
	cin >> s;
	if (s.length() % 2 == 0) {
		cout << s << s;
	}   
}
	
Editor is loading...