Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123116 林鑫辰 12for循环练习II Python3 Accepted 45 MS 3760 KB 80 2025-06-28 09:50:53

Tests(10/10):


Code:

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