from decimal import Decimal import math D,P = map(int,input().split()) A = D * P/100 AA = D + A print(math.floor(AA))