What is the output of following code?a=12b=56print("Sum of these numbers is: " , a+b)
ответы: 1
Зарегистрируйтесь, чтобы добавить ответ
Ответ:
68
The variable a is equal to 12, and the variable b is equal to 56. As a result, it will be 68, because in the "print ()" function, "a + b"is written at the end. Answer 68