#include<bits/stdc++.h> using namespace std; int main(){ int i,j; cin>>i>>j; for(int a=i;a<=j;a=a+1){ cout<<a<<endl; } return 0; }