x = input() res = x.split(".") n = int(res[0]) d = float("0." + res[1]) if d >= 0.5: n += 1 print(n)
相关推荐