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