Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
119845 胡皓宇 12for循环练习II Python3 Accepted 41 MS 3776 KB 80 2025-05-19 21:19:35

Tests(10/10):


Code:

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