// Code derived from Stroustrup's PPP2 book// § 4.4 Statements// -beginning on p 101#include<iostream>usingstd::cout;intmain(){inta=7;cout<<a<<'\n';// 1 + 2; // do an addition, but don’t use the sum// a * b; // do a multiplication, but don’t use the product}