#include<iostream> using namespace std; int main(){ int a=3; int b=5; int t=a; a=b; b=t; cout<<a<<" "<<b; return 0; }