What is wrong with this code. plz tell and explain

#include
using namespace std;
int main() {
int n;
cin>>n;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(j>i)
{ cout<<"*";

	}
	if(i>j)
	{
		cout<<j;
	}
	if(i==j)
	{
		cout<<j;
	}

	}
	cout<<endl;
}
return 0;

}

@Kunalgoyal
There was a space before each line. Your logic is correct.