
//My compiler is dev c++
//Second snippet made
#include <iostream>
using namespace std;
int z;
int main(){
int x;
int y;
cout << "Type a number. ";
cin >> z;
cout << "Type another. ";
cin >> x;
z = x*y;
cout << "The two you entered multiplied is " << z << "\n";
system("pause");
}