/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int x,y;
scanf("%d %d",&x,&y);
if(x<y)
{
printf("%d",y-x);
}
else
{
printf("%d",x-y);
}
}
*/
/*
#include <stdio.h>
int main()
{
int x,y,z;
scanf("%d %d %d",&x,&y,&z);
if(((x-y+z)%10)==0)
{
printf("대박");
}
else
{
printf("그럭저럭");
}
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int x,y,z;
scanf("%d %d %d",&x,&y,&z);
if((((x+y+z)/100)%2)==0)
{
printf("대박");
}
else
{
printf("그럭저럭");
}
}
*/
/*
#include <stdio.h>
int main()
{
int x;
scanf("%d",&x);
if(x/10!=1)
{
if((x%10)==1)
{
printf("%dst",x);
}
else if ((x%10)==2)
{
printf("%dnd",x);
}
else if((x%10)==3)
{
printf("%drd",x);
}
else
{
printf("%dth",x);
}
}
else
{
printf("%dth",x);
}
return 0;
}
*/
/*
#include<stdio.h>
int main() {
/ int x;
/
/ scanf("%d", &x);
/
/ if(x%10==1 && x!=11) {
/ printf("%dst", x);
/ }
/ else if() {
/
/ }
/ else if() {
/
/ }
/ else {
/
/ }
/
/}
*/
/*
#include <stdio.h>
int main()
{
int u,v,w,x,y,z;
scanf("%d %d %d",&x,&y,&z);
w=90-(x-4);
v=w/5;
u=v+y;
if(u<z)
{
printf("lose");
}
else if(u==z)
{
printf("same");
}
else
{
printf("win");
}
return 0;
}
/*
74: 4
75: 3
76: 3
77: 3
78: 3
79: 3
80: 2
*/
#include <stdio.h>
int main()
{
int u,v,w,x,y,z;
scanf("%d %d %d %d",&w,&x,&y,&z);
u=w/x;
v=y/z;
if(u>v)
{
printf(">");
}
else if(u<v)
{
printf("<");
}
else
{
printf("=");
}
return 0;
}



