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