price_D, tax_P = map(int, input().rstrip().split(' ')) total_price = price_D * (100 + tax_P) / 100 print(int(total_price))