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