import math D, P = map(int, input().split()) fee = D * (P * (10 ** (-2)) + 1.0) fee_round = round(fee) if math.isclose(fee, fee_round): fee = fee_round Fee = str(fee).split('.')[0] print(Fee)