Computer Science, asked by ravalirao357p1zksl, 1 year ago

Program for addition of two numbers which is bug free

Answers

Answered by thedevnagpal
0
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
int sum, a, b;
cout<<"Enter first number."<<endl;
cin>>a;
cout<<"Enter second number."<<endl;
cin>>b;
sum=a+b;
cout<<"The sum of the given numbers is"<<sum<<endl;
getch();
}
Similar questions