#include <iostream> using namespace std; int main(){ int i,n,b; cin>>n>>b; for(i=n;i<=b;i++){ cout<<i<<endl; } }