/*	Value Parameters program */

#include <iostream.h>

using namespace std;	// October 5, 2001

//--------------------------------------------------------------------------------
void Swap(int x, int y)
/*	Exchanges the values of x and y */
{
	int Temp;
	Temp = x;
	x = y;
	y = Temp;
}
//--------------------------------------------------------------------------------
int main()
{
	int a = 3, b = 5;
	cout << "Before Swap(): a= " << a << " and b= " << b << endl;
	Swap(a, b);
	cout << "After Swap(): a= " << a << " and b= " << b;
	return (0);
}

