Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as C++ by yurtan ( 5 years ago )
#include <iostream>
 
using namespace std;
 
int main()
{
    int a,b;
    cout<<"a : ";
    cin>>a;
    cout<<"b : ";
    cin>>b;
    cout<<endl;
    b = b + a;
    a = b - a;
    b = b - a;
    cout<<"Output : "<<endl;
    cout<<"a : "<<a<<endl;
    cout<<"b : "<<b<<endl;
}

 

Revise this Paste

Your Name: Code Language: