#include int main() { int a,b; scanf("%d %d",&a,&b); int c = b - a; if (c > 0) { printf("%c%d\n",'+',c); } else { printf("%d\n",c); } return 0; }