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