class Ideone {
	public static void main (String[] args) throws Exception {
		System.out.println("8 / 16:  " + (8 / 16));
		System.out.println("-8 / 16: " + (-8 / 16));
		System.out.println("8 >> 4:  " + (8 >> 4));
		System.out.println("-8 >> 4:  " + (-8 >> 4));
	}
}