#include #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; void solve() { double N; cin >> N; cout << (double)(1.0 / N) << endl; } int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(12); solve(); getchar(); }