10156번 풀이 [Python]

sua·2022년 5월 31일
0

Baekjoon

목록 보기
41/161
post-thumbnail

문제


풀이

a, b, c = map(int, input().split())
s = a * b - c
if s < 0:
    print(0)
else:
    print(s)
profile
가보자고

0개의 댓글