import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Locale;
public class Main {
    public static void main(String[] args) {
        System.out.println("Hello World!");
        String []locale = {"hi", "IN"};
        Calendar choosenDate = Calendar.getInstance(new Locale(locale[0],locale[1]));
        SimpleDateFormat Dformat = new SimpleDateFormat("MMMM dd yyyy",new Locale(locale[0],locale[1]));
        System.out.println("MY_APP***********Newly converted date:"+ Dformat.format(choosenDate.getTime() ));
    }
}