#include <iostream>
#include <string>
using namespace std;
int main ()
{
int x,y;
cout << "Enter a two small positive numbers: ";
cin >> x >> y;
cout << "Before swap: x=" << x << " y= " << y << endl;
// swap( x , y );
cout << "After swap: x=" << x << " y= " << y << endl;