public class Bin { public static void main (String[] args){ long bitty = 0b00000000_00000000_00000000_00000000_00000000_00000000_00000000_00000001L; for (int i=1; i<63; i++){ System.out.println(bitty<<i); } } }