-Code
cnt = 1
while 1:
li = list(map(int, input().split()))
if li[0] == 0:
break
print(f"Case {cnt}: Sorting... done!")
cnt += 1
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 11257번 IT Passport Examination (0) | 2022.10.02 |
---|---|
[백준/파이썬] 8760번 Schronisko (0) | 2022.10.01 |
[백준/파이썬] 4696번 St. Ives (0) | 2022.09.29 |
[백준/파이썬] 4589번 Gnome Sequencing (0) | 2022.09.28 |
[백준/파이썬] 25640번 MBTI (0) | 2022.09.27 |