def main(): K = int(input()) S = int(input()) # x * K/100 = S total = S / (K/100) print(total) if __name__ == '__main__': main()