#include using namespace std; int main(){ int K; cin >> K; int S; cin >> S; cout << S * 100 / (100 - K) << endl; }