#include<iostream> using namespace std; int main() { int i=3,j=4; swap(i,j); cout<<i<<endl<<j<<endl; return 0; }