Morgan Stanley interview question

2nd round live coding: private static void function(int n) { if (n > 0) function(n - 1); System.out.print(n); } function(5); What will the call print? What if we change the recursive call to n-- or --n.