Read n. Print sum of series: 1 + 1/2 + 1/3 + ... + 1/n (rounded to 2 decimal places).
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
5
Output
2.28