Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Sum of Two Numbers without using third Variable in C++

//SUM OF TWO NUMBERS WITHOUT USING THIRD VARIABLE

#include<iostream.h>
#include<conio.h>
void main()
{
int x=3, y=2;
clrscr();
x=x+y;
cout<<"Sum of x and y :"<<x;
getch();
}