+ 1
#include<iostream> using namespace std; int main() { int a=5,b=10; int temp = a; a = b; b = temp; cout<<a<<endl; cout<<b<<endl; }
4th Nov 2016, 4:42 AM
kamal joshi
kamal joshi - avatar