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

[백준/파이썬]17256번 달달함이 넘쳐흘러

by 현장 2021. 10. 16.

-코드

a = list(map(int, input().split()))
b = list(map(int, input().split()))
r1 = b[0] - a[2]
r2 = b[1] // a[1]
r3 = b[2] - a[0]
print(r1, r2, r3)