Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
301152 俞苈轩 【C2-1】n到m之间的所有整数 Python3 通过 100 167 MS 3728 KB 222 2024-11-22 20:07:46

Tests(1/1):


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


测评信息: