Computer Science, asked by nawiskarai, 8 months ago

PROGRAM.
Write a
program to print
the sum of any
three number​

Answers

Answered by imtiyazallam
3

Answer:

a = int(input("Enter 1st number: "))

b = int(input("Enter 2nd number: ")))

c = int(input("Enter 3rd number: "))

print("Sum of the 3 number is", (a + b + c))

Similar questions