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