We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e3d6c4 commit 9b7f6fdCopy full SHA for 9b7f6fd
2675.py
@@ -0,0 +1,9 @@
1
+# 문자열 반복
2
+
3
+T = int(input())
4
5
+for _ in range(T):
6
+ R, S = map(str, input().split())
7
+ for letter in S:
8
+ print(letter*int(R), end='')
9
+ print()
0 commit comments