← Back to List

21612번: Boiling Water ↗

Solutions

Python 3
89 B | 89 chars
b = int(input())
p = 5 * b - 400
print(p)
print(1 if p < 100 else (-1 if p > 100 else 0))