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