Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95155 汤弘毅 13求n加到m的和 Python3 Wrong Answer 36 MS 3748 KB 76 2024-10-27 08:58:05

Tests(0/10):


Code:

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


Run Info:

------Input------
5 13
------Answer-----
81
------Your output-----
68