C++ programming question 7.21 (sales summary)

                                   #include<iostream>
using namespace std;
main()
{
 int a[50][60],i,j;
  cout<<"Owner's show room 1."<<endl;
 for(i=1;i<=5;i++)
 {
  for(j=1;j<=4;j++)
  {
  cout<<"Enter the value at Position ("<<i<<","<<j<<") : ";
  cin>>a[i][j];
 }
}
 cout<<"\t   Ammar(1) Humza(2)  Razzaq(3) Bashir(4)"<<endl;
 for(i=1;i<=5;i++)
 {
  if(i=1)
  {
   cout<<"Soap(1)";
  for(j=1;j<=4;j++)
  {
  cout<<"\t"<<a[i][j]<<" ";
  }
  cout<<endl;
  }
  if(i=2)
  {
   cout<<"Shampoo(2)";
   for(j=1;j<=4;j++)
   {
  cout<<"\t"<<a[i][j]<<" ";
 }
  cout<<endl;
 }
        if(i=3)
  {
   cout<<"Ariel(3)";
   for(j=1;j<=4;j++)
   {
  cout<<"\t"<<a[i][j]<<" ";
 }
  cout<<endl;
 }
 if(i=4)
  {
   cout<<"Salt(4)";
   for(j=1;j<=4;j++)
   {
  cout<<"\t"<<a[i][j]<<" ";
  }
  cout<<endl;
 }
 if(i=5)
  {
   cout<<"Cream(5)";
   for(j=1;j<=4;j++)
   {
  cout<<"\t"<<a[i][j]<<" ";
  }
  cout<<endl;
 }
}}