第2章-11 求平方与倒数序列的部分和 m, n = input().split() m, n = int(m), int(n) tot = 0 while m <= n: tot += m ** 2 tot += 1 / m m += 1 print("sum = %.6f" % tot)