def main(): K = int(input()) S = int(input()) total = S / (1-K/100) print(int(total)) if __name__ == '__main__': main()