#include using namespace std; int main() { string N; cin >> N; while (N.length() < 10) { N += N; } cout << N << '\n'; }