#include<iostream> using namespace std; int main(){ int n,j; cin>>n>>j; for(int i=n;i<=j;i++){ cout<<i<<endl; } }