#include <iostream>
using namespace std;
int main() {
int a=0,b=0;
cin>>a>>b>>endl;
for(int i=a;i<=b;++i)
cout<<i<<endl;
return 0;
}
I want to see the output is about the integers inclusive between a and b, but after entering two numbers, it shows no output..