#include<bits/stdc++.h> using namespace std; int n,i=1; int main(){ cin>>n; while(i<=n){ cout<<n; i++; } return 0; } /************************************************************** Problem: 2081 User: zhangziang Language: C++ Result: Accepted Time:11 ms Memory:2072 kb ****************************************************************/