1015: C语言-多个数列

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:460 Solved:330

Description

求以下三数的和,保留2位小数 1~a之和 1~b的平方和 1~c的倒数和

Input

a b c

Output

1+2+...+a + 1^2+2^2+...+b^2 + 1/1+1/2+...+1/c

Sample Input Copy

100 50 10

Sample Output Copy

47977.93