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