#include int main(void) { int x = 1; int y = 2; int val = 5 + ( x = 3, x + y ) + 7; printf("VAL: %d | X: %d | Y: %d", val, x, y); return val; }