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