Run ID:137509
提交时间:2025-11-18 16:12:56
#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int i,j; cin >> i >> j ; // i是上楼梯的编号,j 结束的编号 for(int t=i; t<=j ; ++t) { cout<< t<<endl; } return 0; }