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