import math D, P = map(int, input().split()) tax = int(math.floor(D * P / 100)) print(D + tax)