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