0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:05:25 +00:00
OI-codes/Luogu/problem/B2005/B2005.cpp
2021-07-04 20:18:19 +08:00

13 lines
215 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
cin >> c;
cout << " " << c << endl
<< " " << c << c << c << endl
<< c << c << c << c << c << endl;
return 0;
}