Operators Java Tutorial

public class Main {
  public static void main(String[] argv) throws Exception {
    byte b = 11;
    System.out.println(b >> 1); 
  }
}