import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00000383_Main2 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void main(String[] args) throws IOException { String[] arr = br.readLine().split(" "); int a = Integer.parseInt(arr[0]); int b = Integer.parseInt(arr[1]); if(a < b) { System.out.println("+" + (b - a)); } else if(a > b) { System.out.println("-" + (a - b)); } else { System.out.println("0"); } } }