mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:58:48 +00:00
13 lines
215 B
C++
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;
|
||
|
}
|