import math price, tax = map(int,input().split()) payment = price + (price * (tax * 0.01)) print(math.floor(payment))