본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]21612번 Boiling Water

by 현장 2021. 5. 16.

-코드

b = int(input())
r = 5 * b - 400
print(r)
if b > 100:
    print(-1)
elif b < 100:
    print(1)
else:
    print(0)