#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; n++; m--; while(n<=m){ cout<<n<<endl; n++; } return 0; }