/*nested For loop that prints out a multiplication table for the integers
1 through 10. */
How do I get tabled results from my code
--------------------------------------------------------------------------
#include <iostream>
using namespace std;
int main( )
{
for (int n=1; n<=2; n++)
for (int m=1; m<=2; m++)
cout << (n*m);