let a:[Int] = readLine()!.split(separator: " ").map{Int($0)!} let b:Int = Int(Double(a[0]) * (1.0 + Double(a[1]) / 100.0)) print(b)