How can i sum two variables without using any arithmetic operator and third variable? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
- 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 Resposta
+ 2
Python: sum((a, b)). Or you could use a loop (in any language)
29th Dec 2018, 2:35 PM
Anna
Anna - avatar