// fathi mohamed fathi rezq bekhit
#include <iostream>
using namespace std;

	// This is the prototype for the writeProverb function 

int main()
{
	
// Fill in the code to call the writeProverb function
int number1;
int number2;

	cout << "Enter the first number" << endl;
	cout << "Then hit enter" << endl;
	cin >> number1;
	cout << "Enter the second number" << endl;
	cout << "Then hit enter" << endl;
	cin >> number2;
	
	cout << "You input the numbers " << number1 << " and " << number2 << endl;
	cout << "after swapping the first number has the value of " << number2 << " which was the value of the second number" << endl;
	
	
	cout << "The second number has the value of " << number1 << " which was the value of the second number" << endl;
	
	
	
	
	
	
	
	
	
	
	
	
	
	return 0;
}
