Version:0.9 StartHTML:0000000105 EndHTML:0000001931 StartFragment:0000000152 EndFragment:0000001897
/******************************************************/
/*************** Isidro Pastor Jorda ******************/
/******************************************************/
/****************** Telematica ************************/
/******************************************************/

#include <iostream.h>
#include <stdlib.h>

int main()
{

    int i, z, y;

    for (i=1; i<=10; i++)
        {
            cout << " 7 x " << i << " = " << 7*i ;
            cout << " \t 11 x " << i << " = " << 11*i ;
            cout << " \t 13 x " << i << " = " << 13*i << endl;
        }


    cout << endl << endl;

    system("PAUSE");
    return 0;
}