import java.util.*;
import java.lang.*;
import java.io.*;

// The main method must be in a class named "Main".
class Main {
  static void Odd( int n ,int e) {
      
      if ( n>10)
      {   
        //  int g = (2*n)-1;
        //  System.out.println(g);
          return;
      }
      Odd(n+1,e);
      int g = (2*n)-1;
       System.out.println(g);
      
      
      
  }
  
  
  
    public static void main(String[] args) {
        System.out.println("Hello world!");
 
      Odd(1, 10);
 
 
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: