#includeusing namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a>b&&b>c) { cout<"; if(b>c) cout<"< else cout<"< } else if(b>a&&b>c) { cout<"; if(a>c) cout<"< else cout<"< } else { cout<"; if(b>a) cout<"< else cout<"< } return 0;}