#include using namespace std; int main(){ float k,s; cin >> k >> s; float rel = (k*s) / (100 - k) + s; cout << rel << endl; }