Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95156 汤弘毅 13求n加到m的和 Python3 Accepted 40 MS 3756 KB 78 2024-10-27 08:59:01

Tests(10/10):


Code:

n,m=map(int,input().split()) s=0 for x in range(n,m+1): s=s+x print(s)