Getting the difference of 2 floats between -1 and 1.

I have two values, let’s call them x and y. They are both between -1 and 1. How do I get the difference between them? I’ve laid out loads of greater thans and less thans but it seems like loads of nodes for something that seems pretty simple.

Any ideas?

The difference between x and y is x-y. Or possibly you want the absolute. So Absolute(x-y). Am I missing something here?

I’m an utter spoon. Thanks for your answer.