import math D, P = input().split() D, P = int(D), float(P) def solve(D, P): return math.floor(D + D*(P / 100)) solve print(solve(D, P))