#Include #Include Using Namespace STD Void Main (Int A, B, Sum Cout A Cout B Sum A+b Cout "Result " Sum Return 0 )

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <>

#include <conio>
using namespace std;
void main()
{
int a,b,sum;
cout<<"enter 1st number";
cin>>a;
cout<<"enter 2nd number";
cin>>b;
sum=a+b;
cout<<"result="<<sum;
return 0;

You might also like