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