import math K = int(input()) S = int(input()) answer = (S / (100 - K)) * 100 print(math.floor(answer))