str1 = input().split('.')
if str1[1] and int(str1[1][0])>=5:
    print(int(str1[0]) + 1)
else:
    print(int(str1[0]))