Computer Science, asked by KapilChauhan1586, 3 months ago

Write a program in python to add three numbers and print their sum. in notebook

don't answer if you don't know the answer​

Answers

Answered by udayagrawal49
1

Answer: The required python program is:

print("Enter first number: ")

a=int(input())

print("Enter second number: ")

b=int(input())

print("Enter third number: ")

c=int(input())

print("The sum above three numbers is: ")

print(a+b+c)

Please mark it as Brainliest.

Similar questions