import math from decimal import * import re getcontext().prec = 700 m = Decimal(1 - float(input())/100) n = Decimal(float(input())) ma = re.search(r'\.(\d)', f'{n/m:0.100f}').group(1) #print(n/m, ma) if ma in ['6', '7', '8', '9']: print(math.floor(n/m)+1) else: print(math.floor(n/m))