Skip to content

Commit 39f6ebc

Browse files
committed
Add 25288.cpp
1 parent 173fb03 commit 39f6ebc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

25xxx/25288.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#include <iostream>
2+
#include <string>
3+
using namespace std;
4+
5+
void solve(void) {
6+
int n; cin >> n;
7+
string s; cin >> s;
8+
9+
while (n--) cout << s;
10+
}
11+
12+
int main(void) {
13+
ios::sync_with_stdio(false);
14+
cin.tie(nullptr);
15+
16+
solve();
17+
return 0;
18+
}

0 commit comments

Comments
 (0)