?
/*************************************************************************
> File Name: ex1.11.cpp
> Author:
> Mail:
> Created Time: Thu 18 Jan 2024 09:37:38 AM CST
************************************************************************/
#include<iostream>
using namespace std;
int main(){
int start, end;
cout<<"Enter start and end numbers: ";
cin>>start>>end;
if(start < end){
while(start < end - 1){
++start;
cout<<start<<" ";
}
cout<<endl;
}
else{
while(start > end - 1){
--start;
cout<<start<<" ";
}
cout<<endl;
}
return 0;
}