#include int main() { float a, b, c; std::cin >> a >> b >> c; std::cout << a + b + c / (a - 2 * b); return 0; }