← Back to List

15600번: Boss Battle ↗

Solutions

Python 3
60 B | 60 chars
n = int(input())
if n <=3:
    print(1)
else:
    print(n-2)