본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 23235번 The Fastest Sorting Algorithm In The World

by 현장 2022. 9. 30.

-Code

cnt = 1
while 1:
    li = list(map(int, input().split()))
    if li[0] == 0:
        break
    print(f"Case {cnt}: Sorting... done!")
    cnt += 1