Bitwise OR (|)
public class Main { public static void main(String[] a) { System.out.println(19 | 7); } } //23