// add 3, 17 and 25 then print the result #include int main(void) { int w, x, y, z; w = 3; x = 17; y = 25; z = w + x; z = z + y; printf("%d", z); printf("%c", '\n'); return 0; }