#include <iostream.h>

using namespace std;
/*  The program is to be modified so that the numbers print out with
	"right alignment."  That is, if you enter 1, 23, 456, 7890
	The output will be:
	        1
	     23
	   456
	 7890
*/
 	
int main()
{
	int a, b, c, d; // a series of integers, no particular significance
	cout<<"Enter four integers: ";
	cin >> a >> b >> c >> d;
	cout << "You listed: \n\n";
	cout << a << endl;
	cout << b << endl;
	cout << c << endl;
	cout << d << endl<<endl;
	return 0;
}

