#include<iostream> #include<cmath> using namespace std; int main() { double x,a,y,b; while(cin>>x>>a>>y>>b) { double xa=floor(x/a); double yb=floor(y/b); if(xa>yb){ cout<<">\n"; } else if(xa<yb){ cout<<"<\n...