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