a = 2; b = 3; function test(c, d) { print a; print b; print c; print d; } test(a, b); print a; print b; print c; print d;