#include <stdio.h>

main()
{
int height, length, width, volume;

	printf("To C, or not to C: that is the pun. \n");

        /* Below are simple assignments to variables, and simple arithmetic, and a print */

 	height = 8;
	length = 10;
	width = 12;
	volume = height * length * width;
        printf("Volume = %d\n", volume);
}

