import java.util.*;

public class Main {
    public static void main(String[] args) {

        // create a new locale
        Locale locale = new Locale("ENGLISH", "BY");

        // print locale
        System.out.println("Locale:" + locale);

        // print locale display name - result is based on inLocale
        System.out.println("Display Name:"
                + locale.getDisplayCountry(new Locale("SV", "SE")));
    }
}
