Left shift (<<)
public class Main { public static void main(String[] a) { System.out.println(9 << 7); } } //1152