N = int(input()) pay = str(N * 108) l = list(pay) ans = "" l.insert(-2,".") for i in l: ans += i print(ans)