package main
import "fmt"

func main(){
	fmt.Println(0 &^ 0);
	fmt.Println(0 &^ 1);
	fmt.Println(1 &^ 0);
	fmt.Println(1 &^ 1);
}