A program that adds two numbers and display the result
//A program of a sum of two numbers
#include <iostream>
using namespace std;
int main ()
{
//displays the sum of two numbers
cout << "A sum of 5 and 6 is equals to " << 5+6;
return 0;
}
//A program of a sum of two numbers
#include <iostream>
using namespace std;
int main ()
{
//displays the sum of two numbers
cout << "A sum of 5 and 6 is equals to " << 5+6;
return 0;
}