/* A program to print the sum of 65, 87, and 33. */ #include main (void) { printf("The sum of %d, %d, and %d is %d\n", 65, 87, 33, 65+87+33); }