ANSWER TO CLASS EXERCISE C2
#include <stdio.h>
main()
{
int value1, value2, sum;
value1 = 35;
value2 = 18;
sum = value1 + value2;
printf("The sum of %d and %d is %d\n", value1, value2, sum);
}
The sum of 35 and 18 is 53
_