백준 17010 Time to Decompress

Yesol Lee·2022년 5월 20일
0

알고리즘

목록 보기
8/31
post-custom-banner

백준 17010 Time to Decompress

문제

정수 n과 기호 x를 한 줄에 받아 x를 n번 출력

코드

for _ in range(int(input())):
    n, X = input().split()
    print(X*int(n))
profile
문서화를 좋아하는 개발자

0개의 댓글