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