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