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