public class X { public static void main(final String[] args) { byte b = 15; byte c = b >> 2; System.out.println(c); } }