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