# -*- coding: utf-8 -*- K = int(raw_input()) S = int(raw_input()) assert 1 <= K <= 99 assert 1 <= S <= 10 ** 6 print (100 * S) // (100 - K)