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