I'm basically looking for an commutative binary operation which, given a couple of two strictly positive integers $(a,b)$, would provide me with another unique strictly positive integer $c$ (which I want to use to uniquely identify the initial couple). The order in the couple should not be important, hence the commutative property.
=========================================
Let's try in a more Mathematical way... (Probably not perfect, sorry in advance ^^)
Let $\circ$ be the operation I'm looking for, it should verify that:
$\forall(a,b,c,d) \in \Bbb {N^{+*}}^4$
$a \circ b = b \circ a$
$\ \ \ \ \ \ \; \not=a \circ c$
$\ \ \ \ \ \ \; \not=c \circ d$
=========================================
An example on the set of prime numbers would be the multiplication. Indeed, given two prime numbers $ a$ and $ b$, then $a \times b$ gives a unique integer.
I know the input and output sets are different in this example (which is not what I'm looking for) but it was just as an example to make it a bit more clearer it not already enough ^^
=========================================
Another example (which is sadly not commutative =/):
Given that I'm in $\Bbb {N^{+*}}$, I can do concatenate $a$ and $b$, and using the $0$ to separate them.
e.g. : $11 \circ 2 = 1102$
=========================================
If someone could found such an operation, I would be so grateful =D
Well, if such an operation exists...
Thanks for your help.