C++ Find the Sum of Two Numbers [int a,b,c].
![Program to find the sum of two numbers [int a,b,c].](https://tutsmaster.org/wp-content/uploads/2021/04/Program-to-find-the-sum-of-two-numbers-int-abc..jpg)
Write a C++ Program to find the sum of two numbers;
C++ Code
#include<iostream.h>
#include<conio.h>
void main()
{
int a,b,c;
cout<<"Enter two numbers:";
cin>>a>>b;
c=a+b;
cout<<"The sum of two numbers is:"<<c;
cout<<endl<<"Thank you";
cout<<endl<<"Press any key to continue...";
getch();
}