// Code derived from Stroustrup's PPP2 book// § 2.2 The classic first program// -beginning on p 45#include<iostream>usingstd::cout;// This program outputs the message “Hello, World!” to the monitorintmain()// C++ programs start by executing the function main{cout<<"Hello, World!\n";// output “Hello, World!”return0;}