Choose Category
//SUM OF TWO NUMBERS USING THIRD VARIABLE #include<iostream.h> #include<conio.h> void main() { int x,y,z; clrscr(); cout<<"Enter the 2 numbers to add"; cin>>x>>y; z=x+y; cout<<"Sum of 2 numbers=" <<z; getch(); }