Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
301145 李南笙 【C2-1】n到m之间的所有整数 Python3 通过 100 204 MS 3728 KB 89 2024-11-22 20:06:00

Tests(1/1):


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


测评信息: