3 lines
98 B
Python
3 lines
98 B
Python
for i in range(int(input())) :
|
|
R,S = input().split()
|
|
print(''.join(c * int(R) for c in S)) |