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 this answer
Answers
Answered by
0
Answer:
Number1= 1234
Number2=8976
ADD=Number1+Number2
print(ADD)
Similar questions