#include using namespace std; void myswap(int &x,int &y){ int temp = x; x = y; y = temp; } int main(){ int a = 7; int b = 5; cout<<"Before swapping in main"<