using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("1 1");
            //=
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("1 28");
            //=
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("10 10");
            //!=
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] wkArr = InputList[0].Split(' ').Select(X => int.Parse(X)).ToArray();
        int N = wkArr[0];
        int P = wkArr[1];
        Console.WriteLine(P == N * P ? "=" : "!=");
    }
}