D, P = map(int, input().split()) price = D * (1 + P / 100) if price != int(price): print(int(price + 1)) else: print(int(price))