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