提交时间:2022-06-18 14:02:29

运行 ID: 41775

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