#include using namespace std; #define ll long long int #define rep(i,n) for( int i = 0; i < n; i++ ) #define dump(x) cerr << #x << " = " << (x) << endl; #define INF 2000000000 #define mod 1000000007 #define INF2 1000000000000000000 int main(void) { cin.tie(0); ios::sync_with_stdio(false); int A, B; cin >> A >> B; if (B - A > 0) cout << "+" << B - A << endl; else cout << B - A << endl; return 0; }