import math num = input() num = num.split() price = int(num[0]) tax = int(num[1]) print(math.floor(price * tax / 100) + price)