A - Three Threes?Editorial
Time Limit: 2 sec / Memory Limit: 1024 MB
Score :?points100100
You are given an integer?between?and?, inclusive, as input.�N1199
Concatenate?copies of the digit?and print the resulting string.�N�N
The input is given from Standard Input in the following format:
�N
Print the answer.
3
333
Concatenate three copies of the digit?to yield the string?.33333
9
999999999
水水水
#include<iostream>
using namespace std;
#pragma GCC optimize(2)
int main(){
int n;
cin>>n;
for(int i=0;i<n;i++){
cout<<n;
}
return 0;
}