Run ID:153588

提交时间:2026-05-23 13:26:26

# 读取输入的两个数字 i, j = map(int, input().split()) # 循环从 i 到 j,逐行打印 for num in range(i, j + 1): print(num)