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