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