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 = Math.Floor(d * p); Console.WriteLine(d); } } }