package main import ( "fmt" ) func main() { var N, P int fmt.Scan(&N, &P) if (P==N*P){ fmt.Println("=") }else{ fmt.Println("!=") } }