creat the program in Python to add three numbers of your choice and display the sum.
Answers
Answered by
1
Answer:here u can see the program in a given link attached... I used arithmetic operator in a program..we can also write a program by adding there numbers providing by the user....
Explanation:
Attachments:
Answered by
0
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
c = int(input("Enter third number: "))
sum = a + b + c
print("Sum of the numbers =", sum)
Similar questions