let inpt = readLine()!.split(separator: " ").map{Int($0)!} var ans = "!=" if(inpt[0]*inpt[1]==inpt[1]) { ans = "=" } print(ans)