#include using namespace std; #include #include int main() { int a,b; char c; cin>>a>>b>>c; if(a==b){ if(c=='='){ cout << "YES"; } else{ cout <<"NO"; } } else if(a<=b){ if(c=='<'){ cout<< "YES"; } else{ cout <<"NO"; } } else if(a>=b){ if(c=='>'){ cout << "YES"; } else{ cout <<"NO"; } } }