#include #include // #include using boost::multiprecision::cpp_int; using namespace std; // using namespace atcoder; #if __has_include("print.hpp") #include "print.hpp" #endif #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) #define ALL(x) (x).begin(), (x).end() #define RALL(x) (x).rbegin(), (x).rend() #define MOD 1000000007 template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } typedef long long ll; typedef pair p; int main(){ ios::sync_with_stdio(false); cin.tie(0); long double k = 0; cin >> k; long double res = 0; for (long double i = 1; i < 2e6; ++i) { res += sin(i*k)/pow(i, i); } cout << setprecision(15); cout << res << endl; }