using System; using System.Linq; class Program { static void Main(string[] args) { var input = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToList(); var integer = new { N = input[0] , P = input[1] }; Console.WriteLine((integer.P == (integer.N * integer.P)) ? "=" : "!="); } }