import math d,p = map(int, input().split()) tax = d * (p / 100) result = math.floor(d + tax) print (result)