- 1
How can i sum two variables without using any arithmetic operator and third variable?
Is it possible to add two variables without any arithmetic operator or the third variable...if yes post the code
1 Answer
+ 2
Python: sum((a, b)). Or you could use a loop (in any language)