# -*- coding: utf-8 -*- import math k = int(input()) s = int(input()) result = math.floor( (s / (100 - k)) * 100 ) print(result)