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