//
#include "stdafx.h"
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int x, y;
double z;
std::cout << "Please enter an integer number"; std::cin >> x;
std::cout << "Please enter a second integer number"; std::cin >> y;
std::cout << "Please enter a decimal number"; std::cin >> z;
std::cout << "The numbers you entered are: 1, 2 and 3, respectively: " << x << ", " << y << ", " << "and " << z << endl;
system("PAUSE");
return 0;
}