d, p = map(int,input().split(' '))#税抜価格d, 消費税率p tax = d * p//100#小数点以下切り捨て taxinc = int(d + tax)#税込を整数型に print(taxinc)