from decimal import * import math D, P = list(map(int, input().split())) print(math.floor(Decimal(D) * (Decimal(1) + Decimal(0.01) * Decimal(P))))