n=str(input())
if int(n[2])>=5:
    x=int(n[1])+1
else:
    x=int(n[1])
if x>9:
    y=int(n[0])+1
    x=0
else:
    y=int(n[0])
if y>9:
    print(f"1.0*10^{len(n)}")
else:
    print(f"{y}.{x}*10^{len(n)-1}")