백준 9295 주사위 [Python]

지구온난화·2023년 3월 21일
0

백준 브론즈

목록 보기
24/52
import random

T = int(input())
for i in range(T):
    a, b = map(int, input().split())
    print("Case {0}: {1}".format(i+1, a+b))

2023-03-21

0개의 댓글