#include #include #include using namespace std; using namespace atcoder; using namespace boost::multiprecision; void YN(bool P) { if (P) { cout << "YES" << endl; } else { cout << "NO" << endl; } } void solve() { int S, T; char c; cin >> S >> T >> c; if (c == '<') { YN(S < T); } else if (c == '>') { YN(S > T); } else { YN(S == T); } } int main() { ios::sync_with_stdio(false); cin.tie(0); solve(); return 0; }