← Back to List

34412번: 13 Floors ↗

Solutions

Python 3
64 B | 64 chars
n = int(input())
if n >= 13:
    print(n + 1)
else:
    print(n)