python-algorithm

[백준] 10156

무적김두칠 2020. 12. 16. 09:41

1
2
3
a,b,c=map(int,input().split())
if a*b>c: print(a*b-c)
else : print(0)
cs
반응형