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