#include <bits/stdc++.h> using namespace std; int main( ) { double a=0; for(int i=1;i<=100;i++) { a+=(1/i); } cout<<a; return 0; }