Computer Science, asked by uditverma5, 10 months ago

write a program to add two numbers ​

Answers

Answered by NottyaaYan
5

Answer:

#include<iostream.h>

#include<conio.h>

void main()

{

int a, b, sum;

cout<<"enter two numbers:";

cin>>a>>b;

sum=a+b;

cout<<sum;

getch();

}

Similar questions