using System; class tax { static void Main() { int d,p; string[] str = Console.ReadLine().Split(' '); d = int.Parse(str[0]); p = int.Parse(str[1]); Console.WriteLine("{0:#}",d+d*(p/100.0)); } }