Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107971 胡海峰老师 12for循环练习II Python3 Accepted 38 MS 3764 KB 80 2025-01-19 10:07:58

Tests(10/10):


Code:

i,j = input().split() i,j = int(i),int(j) for x in range(i,j+1): print(x)