let N, P = stdin.ReadLine () |> (fun l -> l.Split ()) |> (fun arr -> (int arr.[0], int arr.[1])) (if P = N * P then "=" else "!=") |> printfn "%s"