from decimal import Decimal d , p = input().split() d , p = Decimal(d) , Decimal(p) print(int(d * (p / 100 + 1)))