main = readLn >>= putStrLn . f2 . show . f1 where f1 x = x * 108 f2 xs = take (n-2) xs ++ "." ++ drop (n-2) xs where n = length xs