Write a Python program to assign the given values to the given variables then find & display
the sum of these numbers using the variable ADD. Hint: print(ADD)
Number1 =1234
Number2 =8976
(Number1 and Number2 are variables and 1234, 8976 are the values assigned to these
variables)
pls tell me the correct answer I will mark as brainly list if your Ans is correct
wrong answer do it and send me a screenshot and send it.
Answers
Answered by
1
Answer:
num1 = 1234
num2 = 8976
# Adding two nos
sum = num1 + num2
# printing values
print("Sum of {0} and {1} is {2}" .format(num1, num2, sum))
Explanation:
Similar questions