inp = list(map(int, input().split())) price = inp[0]; tax = inp[1] ans = price * (1 + tax / 100) print(ans)