Time for another casual little challenge.
For this one there are only 2 rules:
- you must add numbers
a
andb
together - you must NOT use the
+-*/
operators
Apart from that there are no more rules, and can be done with any language you want!
Pseudocode:
a = 2
b = 32
add(a, b) => 34
Test:
add(a, b) == a + b
Have fun! Let's see what you come up with!