#include <bits/stdc++.h> using namespace std; int main () { int x, y, t; cin >> x >> y; cout << t * x * y / (y - x); return 0; }