I'm assuming AC is a register (accumulator). So what you need is a SPA command while AC has the result of the subtraction of the two numbers. Or a SNA, depends on what you're subtracting from what.
Again, you don't have subtraction. Replace it with addition of one number and a negative of another. Negative is complement plus two, like Ferruccio said.
EDIT: SPA/SNA works by skipping the next command if the AC is positive/negative. So if you want to have an if statement with a nontrivial body, you'd want to put an Sxx followed by a BUN (branch unconditionally). If the condition is true, the branch is skipped, if the condition is false - branch is executed.
Note that it's an inversion of the conventional logic of assembly. Normally, it's "branch if condition is true"; on this machine, it's "branch if the condition is false".
For the record, your instruction set is deliberately stunted. Real life CPUs are more programmer friendly than that, even the RISC kind.