let input:[Double] = readLine()!.split(separator: " ").map{Double($0)!} let output:Int = Int(input[0] * input[1]) print(output)