import math input_params = [int(input()) for i in range(2)] k = input_params[0] s = input_params[1] res = math.floor(-100 * s / (k - 100)) print(res)