Beakjoon&프로그래머스/파이썬
[백준/파이썬] 23235번 The Fastest Sorting Algorithm In The World
현장
2022. 9. 30. 21:11
-Code
cnt = 1
while 1:
li = list(map(int, input().split()))
if li[0] == 0:
break
print(f"Case {cnt}: Sorting... done!")
cnt += 1