0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 19:00:17 +00:00
OI-codes/Luogu/B2005/B2005.cpp

13 lines
215 B
C++
Raw Normal View History

2021-07-04 20:18:19 +08:00
#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;
}