price, tax = map(float, input().split(' ')) payment = int(price * (tax / 100 + 1)) print(payment)