package main import "fmt" func main() { n := 0 _, _ = fmt.Scan(&n) if n == 1 { fmt.Println("=") } else { fmt.Println("!=") } }