import math D , P = map(int,input().split()) if D * (0.01 * P) <= 1 : pay = D else : pay = D + math.floor(D * (0.01 * P)) print(pay)