#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N, K; cin >> N >> K; N++; double res = 0; for (int i = 0; i < N; i++) { res += (double)i / N; } cout << fixed << setprecision(10) << res << '\n'; return 0; }