let () = let a, b = Scanf.scanf "%d %d " (fun a b -> a, b) in let x = b - a in if x = 0 then print_endline "0" else Printf.printf "%+d\n" x