a = 2; b = 3; print a; print b; function test() { print a; print b; a = 4; b = 5; print a; print b; } test(); print a; print b;