지나가던 개발자

[Python] 백준 10156번(과자) 문제 풀이 본문

PS/Python

[Python] 백준 10156번(과자) 문제 풀이

KwonYongHyeon 2022. 5. 12. 11:03

 

k, n, m = list(map(int, input().split()))
if k*n-m > 0:
    print(k*n-m)
else:
    print(0)
Comments