input_list = list(map(int,input().split())) d = input_list[0] p = input_list[1] res = int(d * (1 + p / 100)) print(res)