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