데이터의 가능성/매일코딩

2일차 문자열 반복해서 출력하기

gamnyam 2024. 6. 7. 01:43

 

 

str, n = input().strip().split(' ')
n = int(n)
print(str*n)

 

비교적 수월하게 해결했다.