import math EPS = 0.000001 # 誤差死する可能性があるため price, tax = map(int, input().split()) print(math.floor(price * (1 + tax / 100) + EPS))