package main import "fmt" func main() { var n, p int fmt.Scan(&n, &p) var ans string if p == n*p { ans = "=" } else { ans = "!=" } fmt.Println(ans) }