#include using namespace std; typedef long long LL; int main(){ LL K, S; cin >> K >> S; cout << S * 100 / (100-K) << endl; return 0; }