import java.util.Locale;

public class PrintTest {
    public static void main(String[] args) {
        Locale.setDefault(new Locale("ar", "AE")); // Country does not seem to matter, but I have made it "AE".
        System.out.printf("The number is %d%n", 10);
        System.out.println("The number is " + 10);
    }
} 