#include #include #include #include #include #include #include #include #include using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); double n,k; cin >> n >> k; n++; double ans=0; int i=1; bool fin=false; while(1){ ans+=(i/n); i++; if(i==n)break; } cout << fixed << setprecision(1) << ans << endl; return 0; }