#include using namespace std; using ll = long long; using ld = long double; using P = pair; using vl = vector; using Map = map; using Tup = tuple; using vvl = vector>; #define all(v) v.begin(), v.end() #define prt(v) cout<<(v)<<"\n"; #define fl cout<(v) #define se(v) get<1>(v) #define th(v) get<2>(v) #define endl "\n" template bool chmax(T &a, const T &b){if (a bool chmin(T &a, const T &b){if (a>b){a=b;return 1;}return 0;} const ll INF=1LL<<60; const ll MOD=1000000007; const ll MOD2=998244353; const ld pi=3.141592653589793238; signed main(void){ cin.tie(0);cout.tie(0);ios::sync_with_stdio(false); ld p; cin>>p; cout << fixed << setprecision(15); prt(p/(1-p))fl return 0; }