def main(): price, tax = list(map(int, input().split())) print(int(price + (price * (tax/100))//1)) main()