In: Computer Science
here is no given sample output..
C++ code..
#include<iostream>
using namespace std;
int main()
{
int i,j,n;
cin>>n;
for(i=1;i<=n;i++)
{
for(j=1;j<=n;j++)
{
cout<<i*j<<" ";
}
cout<<endl;
}
}
if any change in output or code.. comment below