← Back to List

10156번: 과자 ↗

Solutions

Python 3
83 B | 83 chars
a,b,c=map(int,input().split(" "))
if(c>=a*b):
    print("0")
else:
    print(a*b-c)