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