from decimal import Decimal, getcontext, ROUND_UP D, P = map(int, input().split()) getcontext().prec = 3 print(int(Decimal(D * (P / 100) + D)))