class Program { static void ki(int i) { System.out.println(i + " Joe"); if(i>0) ki(i-1); } public static void main(String args[]) { ki(9); } }