#ifndef LOCAL #include using namespace std; #define debug(...) (void(0)) #else #include "algo/debug.h" #endif void solve() { int K; cin >> K; vector dp(K + 1); for(int i = K; i--; ) { dp[i] = 0; for(int j = 1; j <= 6; j++) { dp[i] += 1 + (i + j <= K ? dp[i + j] : 0); } dp[i] /= 6.; } cout << fixed << setprecision(16) << dp[0] << endl; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int tt = 1; // std::cin >> tt; while (tt--) { solve(); } }