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

[백준/파이썬]22015번 金平糖 (Konpeito)

by 현장 2021. 6. 21.

-코드

n = list(map(int, input().split()))
print(max(n) * 3 - sum(n))