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