백준 10178 할로윈의 사탕 [Python]

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

백준 브론즈

목록 보기
23/52
n = int(input())
for i in range(n):
    c, v = map(int, input().split())
    print("You get {0} piece(s) and your dad gets {1} piece(s).".format(c//v, c%v))

2023-03-21

0개의 댓글