// Example 2.2. Program to print the number of units in 17 dozen
#include <iostream.h>
int main(void)
{
const int DOZEN = 12; // number of units in a dozen
int NumberOfDozens = 17, // number of dozens
units; // number of units
units = NumberOfDozens * DOZEN;
cout << NumberOfDozens << " dozen contain "
<< units << " units.\n";
return 0;
}