cin >> n;
for (int i=1; i <=n+6; i++)
for (int j=1; j<=n+10; j++)
cout << i * j << endl;
for (int k=1; k <= n+1000; k++)
cout << "Hello" << end;
cin >> n;
for ( i=1; i<=n; i++ )
{ temp = n;
while ( temp > 0 )
{ cout << n * temp << endl;
temp = temp / 2;
}
}