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