Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
302151 叶俊希 【C2-1】n到m之间的所有整数 Python3 通过 100 84 MS 3732 KB 91 2024-11-29 19:50:00

Tests(1/1):


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


测评信息: