0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:45:25 +00:00
OI-codes/Luogu/B2005/B2005.cpp

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;
}