//This program illustrates integer addition. Also note the //syntax necessary for the use of cin. #include void main() { int a, b, c; cout << "Enter two integers: "; cin >> a >> b; c = a + b; cout << a <<" + " << b << " = " << c << ".\n"; }