// Let's do some maths with our variables // Sasha Vassar Sept 2021 #include #define NUMBER 5 int main (void) { int number_two = 10; int result; result = (NUMBER + number_two) * NUMBER; printf("(%d + %d) * %d = %d\n", NUMBER, number_two, NUMBER, result); return 0; }