WWOJ

1115: 求1+1/2+1/3+...+1/n

Time Limit:  1 Sec    Memory Limit:   128 MB
Submission:45     AC:33     Score:100.00


Description

输入一个正整数 repeat (0<repeat<10),做repeat 次下列运算:
读入 1 个正整数 n(n<=50),计算并输出1+1/2+1/3+...+1/n (保留3 位小数)。

Input

见sample

Output

见sample

Samples

input:
2 2 10
output:
1.500 2.929

Source