Write a script to accept 3 numbers from the user and show the some of all three numbers
Answers
Answered by
2
Answer:
num1=int(input("enter the first number")
num2=int(input("enter the second number")
num3=int(input("enter the third number")
print(num1+num2+num3)
Similar questions