public class Main {
	public static void main (String[] args) {
		java.util.function.Function<Integer, Boolean> f = i -> Integer.toHexString(i).matches("[a-f]");
		System.out.println(f.apply(11259375));
	}
}