///////////////////////////////////
//
//PRACTICA 1: Ejemplo 4
//Contiene errores de compilacion
//Hay que corregir los errores
//
///////////////////////////////////

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

using namespace std;

int main ()
{
    int x, y;
    int suma, resta;
    
    cout << "Introducir 2 numeros enteros: ;
    cin >> x >> y;
    
    suma = x + y;
    resta = x - y;
    mult = x * y
    
    cout << x << " + " << y << " = " << suma << endl;
    cout << x << " - " << y << " = " << resta << endl;
    cout << x << " * " << y << " = " << mult << endl;
    
    system ("PAUSE");
    return 0;    
}
