#include void solve() { int a, b; std::cin >> a >> b; int d = b - a; std::cout << (d > 0 ? "+" : "") << d << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }