How can i sum two variables without using any arithmetic operator and third variable? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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

29th Dec 2018, 2:25 PM
Bharat Bachhav
Bharat Bachhav - avatar
1 Answer
+ 2
Python: sum((a, b)). Or you could use a loop (in any language)
29th Dec 2018, 2:35 PM
Anna
Anna - avatar