Choose Category
//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(); }