#include using namespace std; int main() { int a, b, d; cin >> a >> b; d = b - a; if (d > 0) { cout << "+" << d << endl; } else { cout << d << endl; } return 0; }