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