Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
301154 叶俊希 【C2-1】n到m之间的所有整数 Python3 通过 100 124 MS 3728 KB 84 2024-11-22 20:08:43

Tests(1/1):


n,m=input().split() n=int(n) m=int(m) a=n+1 while a < m: print(a) a+=1


测评信息: