def main(): K = int(input()) S = int(input()) ans = int(S / (100 - K) * 100) print(ans) main()