#include using namespace std; int main(void){ // Your code here! int per, min; cin >> per >> min; cout << (per * min) / (100 - per) + min << endl; }