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