#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
long long int a;
while(cin>>a){
long double b,c,d,e;
cin>>b>>c>>d>>e;
if(c==e&&c==0){
if(b>d){
cout<<'>'<<'\n';
}
else if(b==d){
cout<<'='<<'\n';
}
else {
cout<<'<'<<'\n';
}
}
else cout<<"No"<<'\n';
}
}