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