Search

31. 백준_Python [10156] 과자

A, B ,C = map(int,input().split()) result = A*B - C if(result < 1): result=0 print(result)
Python
복사