백준 풀이

백준 10156번 파이썬

ag2개발자 2022. 8. 22. 18:25
k,n,m= map(intinput().split())
if k*n<m:
    print(0)
else:

    print(k*n-m)