using System;

public class Program {
    public static void Main() {
        int[] n = Array.ConvertAll(Console.ReadLine().Split(' '), delegate(string value) {
            return int.Parse(value);
        });
        Console.WriteLine(n[1] == n[0] * n[1] ? "=" : "!=");
    }
}