class Test2 { public static void main(String[] args) { int i = 0; i++; print(i); } static void print(int i) { System.out.println(i); } }