보안을 그리다, 훈이

[Baekjoon/Python3] 14489번 치킨 두 마리 (...) 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 14489번 치킨 두 마리 (...)

HooNeee 2020. 12. 7. 02:56

[Baekjoon/Python3] 14489번 치킨 두 마리 (...)

 

www.acmicpc.net/problem/14489

 

14489번: 치킨 두 마리 (...)

첫째 줄에 두 통장의 잔고 A와 B가 주어진다. (0 <= A, B <= 1,000,000,000) 둘째 줄에 치킨 한 마리의 가격 C가 주어진다. (0 <= C <= 1,000,000,001)

www.acmicpc.net

 

a, b = map(int, input().split())
c = 2 * int(input())
if (a + b) >= c:
    print(a + b - c)
else:
    print(a + b)
Comments