using System; namespace csharptest { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); double d = int.Parse(str[0]); double p = int.Parse(str[1]); d = d * (1 + p * 0.01); Console.WriteLine(Math.Floor(d)); } } }