=== Program === function main() { var x,y; x = y = 2; print(++x); print(y); }=== Output === Result: null-value Output Entity: standard-out 3,2