C++ Programming/Code/Variables/Examples/Adds two numbers and prints their sum1
From Wikibooks, the open-content textbooks collection
< C++ Programming | Code | Variables | Examples
// This program adds two numbers and prints their sum, variation 1 #include <iostream> #include <ostream> using namespace std; int main() { int a = 123, b (456), sum = a + b; cout << "The sum of " << a << " and " << b << " is " << sum << endl; return 0; }