#include <stdio.h>

int main(void) {
	// your code goes here

	int a;
	int b;
	scanf("%d",&a);
	scanf("%d",&b);


	if(a>b)
		printf("%d>%d",a,b);
	if(b>a)
		printf("%d<%d",a,b);
	else
		printf("%d==%d",a,b);
	return 0;
}

