// add 17 and 25 then print the result // Written by: Andrew Taylor // Written as a COMP1521 lecture example #include int main(void) { int x = 17; int y = 25; printf("%d\n", x + y); return 0; }