/* BitTest4 Update 2001/2/12 */
class BitTest4{
	public static void main( String args[] ){
		int a=1, b=0, c=1, d=0, e=1, f=0;
		int g=8, h=8, i=8;
		a &= b;
		System.out.println("a&=b: " + a );
		c |= d;
		System.out.println("c|=d: " + c );
		/* C d -> f */
		e ^= f;
		System.out.println("e^=f: " + e );
		g>>=2;
		System.out.println("g=>>2: " + g );
		h>>>=2;
		System.out.println("g=>>>2: " + h );
		i<<=2;
		System.out.println("i=<<2: " + i );
	}
}

