#include<iostream.h>
#include<conio.h>
int a, b, sum=0;
void main(){
clrscr();
cout<<"Enter two numbers: ";
cin>>a>>b;
sum=a+b;
cout<<"Sum: "<<sum;
getch();
}
#include<conio.h>
int a, b, sum=0;
void main(){
clrscr();
cout<<"Enter two numbers: ";
cin>>a>>b;
sum=a+b;
cout<<"Sum: "<<sum;
getch();
}
Comments