
/*
Online Java - IDE, Code Editor, Compiler

Online Java is a quick and easy tool that helps you to build, compile, test your programs online.
*/

public class Main
{
    static int n;
    
    public static void main(String[] args) {
        System.out.println("Welcome to Online IDE!! Happy Coding :)");
        
        test(1);
    }
    
    public static int test (int n)
    {
        n++;
        
        System.out.println(n);
        return 1 + test(n);
    }
}
