#include using namespace std; int main(){ int A,B; cin >> A >> B; const int C = B-A; if(C>0){ cout << '+'; } cout << C << endl; return 0; }