i am unable to run the testcases in the given problem,Can you Please correct me
#include
using namespace std;
main()
{
int i,j;
for(i=0;i<5;i++)
{
if(i==0 || i==1)
{
for(j=0;j<=i;j++)
{
cout<<“1”;
}
}
else
{
for(j=0;j<=i;j++)
{
if(j==0|| j==i)
{
cout<<i;
}
else
{
cout<<“0”;
}
}
}
cout<<endl;
}
}