#include using namespace std; int main(void) { double per, time; cin >> per >> time; cout << int(time / (100 - per) * 100) << endl; return 0; }