#include <iostream> #include <cstring> using namespace std; int main(){ int a; cin >> a; if(a>=0){ cout << '+'; } if(a<0){ cout << '-'; } return 0; }