#include using namespace std; int main() { long long int a, b, c,ans; long double r,d; std::cin >> a; std::cin >> b; std::cin >> c; r = (double)(b - c) / (a - b); d = (double)b - r*a; ans = c*r + d; std::cout << noshowpoint<