#include<iostream> using namespace std; int main(){ int i,j; cin>>i>>j; for(int k=i;k<=j;k++){ cout<<k<<endl; } return 0; }