Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107966 伍长辉 12for循环练习II Python3 Accepted 37 MS 3768 KB 104 2025-01-19 09:56:33

Tests(10/10):


Code:

i,j=input().split() i=int(i) j=int(j) while True: if i>j: break print(i) i=i+1