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