#coding=UTF-8 #残りの(100-K)%がS分 K=int(input()) S=int(input()) ans=S*100//(100-K)#切り捨てだそうな print(ans)