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