s, t, c = map(int, input().split()) if c == '<': print('YES' if s < t else 'NO') elif c == '>': print('YES' if s > t else 'NO') else: print('YES' if s == t else 'NO')