d, p = map(int, input().strip().split())
ret = d * (1 + p/100.0)
print(int(round(ret,2)))