d,p = map(int,input().split()) s = d * (1 + p / 100) eps = 10**(-6) if abs(s - round(s)) <= eps: print(round(s)) else: print(int(s))