using System; class Program { static void Main() { decimal d = decimal.Parse(Console.ReadLine()); Console.WriteLine(d * 1.08m); } }