#include <iostream>
using namespace std;//设置一个中间值来进行判断
int main(){
int a;
int b;
int c;
c = a-b;
cout<<"芜湖"<<endl;
cin>>a>>b;
while(c==0){
cout<<"相同整数间无整数\n"<<endl;
}
while(a<b-1){
++a;
cout<<a<<endl;
}
while(a>b+1){
++b;
cout<<b<<endl;
}
system("pause");
return 0;
}