#include<bits/stdc++.h>
using namespace std;
int main(){
	int n;
	cin>>n;
	if(n>0)cout<<n<<">0"<<endl;
	else if(n<0)cout<<n<<"<0"<<endl;
	else cout<<n<<"="<<"0"<<endl;
	return 0;
}

/**************************************************************
	Problem: 1638
	User: admin
	Language: C++
	Result: Accepted
	Time:16 ms
	Memory:2072 kb
****************************************************************/