import sys

n=float(input())
if n+0.5>int(n):
    n=int(n+0.5)
else:
    n=int(n)
print(n)