#pragma GCC optimize("Ofast") #include using namespace std; #define REP(i,n) for(int i = 0; i < (int)(n); ++i) #define ALL(a) (a).begin(),(a).end() typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); float N; cin >> N; cout << 1/N << endl; return 0; }