// No.1511 A ? B Problem package main import "fmt" func main() { var a, b int fmt.Scan(&a, &b) fmt.Println((a | b) - (a & b)) }