728x90
반응형

단순 사칙연산 문제이다.

A, B = map(int, input().split())
C = int(input())
print(A+B - 2*C if A+B >= 2*C else A+B)
728x90
반응형

+ Recent posts