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