백준 17010 Time to Decompress
정수 n과 기호 x를 한 줄에 받아 x를 n번 출력
for _ in range(int(input())): n, X = input().split() print(X*int(n))