1int x = 25;
2System.out.println(x); // 1 1 0 0 1 : 25
3System.out.println(x >> 2); // 1 1 0 : 6
4System.out.println(x << 2); // 1 1 0 0 1 0 0 : 100
5// Negative numbers are stored as two's complement
6// and will trail right shifts with one
7// Unsigned operators <<< >>> ignore sign and trail with 0