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