input = gets.split(" ").map(&:to_f) price = input[0] tax = input[1] puts (price * ((tax * 1/100).to_f + 1.to_f)).floor(0)