n = int(input())
for i in range(n):
a, b = input().split()
for j in b:
print(int(a)*j, end = '')
print()
'코딩테스트 > 백준' 카테고리의 다른 글
백준 1316번 그룹 단어 체커 python 파이썬 (0) | 2022.10.07 |
---|---|
백준 1157번 단어 공부 python 파이썬 (0) | 2022.10.07 |
백준 1152번 단어의 개수 python 파이썬 (0) | 2022.10.07 |
백준 8958번 OX퀴즈 python 파이썬 (0) | 2022.10.07 |
백준 11720번 숫자의 합 python 파이썬 (0) | 2022.10.07 |