import sys from collections import defaultdict try: import mydebug def dprint(*objects): print(*objects) except: def dprint(*objects, sep='', end='\n'): pass k = int(input()) s = int(input()) ans = int(s * 100 / (100 - k)) print(ans)