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