import java.util.*;
public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()){
            String[] s = sc.nextLine().split(" ");
            int a = Integer.parseInt(s[0]);
            int b = Integer.parseInt(s[1]);
            char c = '=';
            if(a > b) c = '>';
            if(a < b) c = '<';
            System.out.printf("%d%c%d\n", a, c, b);
        }
    }
}