提交时间:2023-11-10 09:03:13

运行 ID: 233

n = int(input()) sum = 0 for i in range(1, n+1): sum += i**3 print(sum)