from decimal import * a,b = map(int,input().split(" ")) payment = a * ( 1 + Decimal(b/100) ) print(int(payment))