How can i sum two variables without using any arithmetic operator and third variable? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
- 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
Bharat - avatar
1 ответ
+ 2
Python: sum((a, b)). Or you could use a loop (in any language)
29th Dec 2018, 2:35 PM
Anna
Anna - avatar