Im getting correct output on other ides but its showing error message here

here is the solution to my code.
#include

using namespace std;

int main()
{
int i,n,j;
cout<<β€œEnter the range:”;
cin>>n;
cout<<β€œ1”<<endl;;
for(i=2;i<=n;i++){
cout<<β€œ1”;
for(j=1;j<=i-2;j++){
cout<<β€œ0”;
}

    cout<<"1"<<"\n";
}

return 0;

}