from decimal import Decimal price, tax = map(Decimal, input().split(' ')) payment = int(price * (tax / 100 + 1)) print(payment)