#include using namespace std; int main() { int a, b; cin >> a >> b; int ans = b - a; cout << (ans > 0? "+": "") << ans << '\n'; return 0; }