#include #include using namespace std; void Swap (int &x, int &y) { int temp = x; x = y; y = temp; return; } int main() { int one; cout << "Enter first number: " << flush; cin >> one; int two; cout << "Enter second number: " << flush; cin >> two; if (one < two) { Swap(one,two); } cout << "Numbers: " << one << " " << two << endl; return 0; }