local s = io.read("*n") local t = io.read("*n") local c = io.read():gsub(" ", "") local ans = (function () if c == "<" then if s < t then return "Yes" else return "No" end end if c == ">" then if s > t then return "Yes" else return "No" end end if c == "=" then if s == t then return "Yes" else return "No" end end end)() print(ans)