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

[백준/파이썬] 9306번 Practice: Roll Call

by 현장 2022. 11. 1.

-Code

for i in range(int(input())):
    name1 = input()
    name2 = input()
    print(f"Case {i + 1}: {name2}, {name1}")