#include using namespace std; #ifdef LOCAL #include "debug.hpp" #else #define debug(...) 1 #endif int main() { ios::sync_with_stdio(false); cin.tie(nullptr); double p; cin >> p; double ans = 1 / (1 - p) - 1; cout << fixed << setprecision(15) << ans << '\n'; }