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