#include "bits/stdc++.h" using namespace std; int main() { int a, b, x; cin >> a >> b; x = b - a; if (x > 0) cout << '+'; cout << x << endl; }