알고리즘/백준
백준-10156번(과자)-python3
nyeongha
2023. 11. 30. 12:35
a,b,c=map(int,input().split())
print(a*b-c if a*b>c else 0)