#include using namespace std; /////////////////// メイン /////////////////// int main () { //////////////////// 入力 //////////////////// int a, b; cin >> a >> b; //////////////// 出力変数定義 //////////////// string result; //////////////////// 処理 //////////////////// if (b-a>0) result += '+'; result += to_string(b-a); //////////////////// 出力 //////////////////// cout << result << endl; //////////////////// 終了 //////////////////// return 0; }