python3题解

num = input()
num1 = int(num.split(".")[0])
num2 = num.split(".")[1]
if int(num2[0]) >= 5:
    print(num1 + 1)
else:
    print(num1)