zhouzixiao 2023-08-10 12:10:34
#include
using namespace std;
int main(){
int l,r; cin >>l>>r; for(int i=l;i<=r;i++){ cout<<i<<" "; } return 0;
}