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