import sys
s = float(sys.stdin.readline())
# print(round(s)) 这里不行,因为round用的是银行家舍入
print(int(s+0.5))