package main
import ("fmt")
func main() {
var x = 9
fmt.Printf("x = %b\n",x)
fmt.Printf("x >> 2 is %b\n",x >> 2)
}