import Control.Applicative main :: IO () main = do [n, np] <- words <$> getLine putStrLn $ solve n np solve n np = if n == np then "=" else "!="