def a(input_float): t = "{:.8f}".format(input_float) return t input_num = float(input()) print(a(input_num))