#include <stdio.h> int main() { double n,sum=0; scanf("%lf",&n); while(n) { sum+=(1/n); n--; } printf("%.6lf\n",sum); return 0; }