what would be the output of the program if bar() were changed to the following:
public static void bar() {
Main m1 = new Main();
Main m2 = new Main();
Main m3 = new Main();
m1.setN(5);
m3.foo();
}