D, P = map(int, input().split()) tax = P / 100 print(int(round(D * (1 + tax), 5))) # 誤差考慮