open System [] let main args = let s = Console.ReadLine(); let s = s.Split(' '); let x:int = (int)s.[0]; let y:int = (int)s.[1]; if x = x * y then printfn "=" else printfn "!=" 0