using System; class P { static void Main() { string[] CSL = Console.ReadLine().Split(); int A = int.Parse(CSL[0]); int B = int.Parse(CSL[1]); double Tax = (A*1.0) * ((B*1.0) / 100); Console.WriteLine(A + Math.Floor(Tax)); Console.ReadKey(); } }