# -*- coding: utf-8 -*-

import math

k = int(input())
s = int(input())

print(math.floor(s * 100 / (100 - k)))