package main import ( "fmt" ) func main() { solve272() } func solve272(){ var x int fmt.Scan(&x) fmt.Println(x^1) return }