Why it is showing the error

#include
using namespace std;
int main()
{
int n;
cin>>n;
for(int i=1;i<=n;i++)
{
for(int space=1;space<=n-i;space++)
{
cout<<" ";
}
int val=i;
for(int cnt=1;cnt<=i;cnt++)
{
cout<<val;
val=val+1;
}
val=val-2;
for(int cnt=1;cnt<=i-1;cnt++)
{
cout<< val;
val=val-1;

	}
	cout<<endl;
}
return 0;

}

@shdanish1508 you have to give space between is number by tab separation("\t");

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.