Computer Science, asked by ramsmedicine, 1 month ago

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

Answers

Answered by srishtibhasin4
0

Answer:

Explanation:

Below is the Python program to add two numbers:

Python3 program to add two numbers

 num1 = 15

num2 = 12

 # Adding two nos

sum = num1 + num2

 # printing values

print("Sum of {0} and {1} is {2}" .format(num1, num2, sum))

change your numbers in formula

Similar questions