from math import floor

a,b = map(int,input().split())
ans = floor(a*(1+0.01*b))

print(ans)