#include using namespace std; #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a <= b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a >= b) { a = b; return 1; } return 0; } #define rep(i,n) for (int i = 0; i < (n); ++i) typedef long long ll; using P=pair; const int INF=1001001001; const int mod=998244353; bool f(int s,int t,char c){ if(c=='<'){return s'){return s>t;} if(c=='='){return s==t;} } void solve(){ int s,t; char c; cin>>s>>t>>c; if(f(s,t,c)){cout<<"YES"<