import math M = list(map(int, input().split())) tax = M[0] * M[1] / 100 ans = M[0] + tax print(math.floor(ans))