/* Program 3-4 */

main ()
{
 int sum;

 sum = 50 + 25;
 printf ("The sum of 50 and 25 is %d\n", sum);
}



/* Program Output

The sum of 50 and 25 is 75

*/
