">>" and "<<" are binary bit shift operators. "4" in decimal is equal to "0100" in binary, and "4>>3" shifts "0100" three bits to the right. The result of the operation is "0001" in binary ("1" in decimal).