Math, asked by shreyasharma9047, 6 months ago

Program to obtain three numbers
and print their sum​

Answers

Answered by ITZDASHINGBOY
2

Answer:

number1 = int(input('Enter the first number:'))

number2 = int(input('Enter the second number:'))

number3 = int(input('Enter the third number:'))

print('The total of the three numbers is:',number1+number2+number3)

Answered by Mehak005
5

number1 = int(input('Enter the first number:'))

number2 = int(input('Enter the second number:'))

number3 = int(input('Enter the third number:'))

print('The total of the three numbers is:',number1+number2+number3)

please mark as BRAINLIEST ❤️❤️

Similar questions