Computer Science, asked by phdbsnd, 2 months ago

Write a python program to accept three integers and print their sum.

Answers

Answered by DARKIMPERIAL
5

Answer:

Sum of three numbers

a = int(input())

b = int(input())

print(a + b)

Explanation:

HOPE IT HELPS YOU

Answered by o0a1b2
3

Answer:

a=int(input("enter first no."))

b=int(input("enter second no."))

c=int(input("enter third no."))

print(a+b+c)

Explanation:

to display the string,we have to use input and we are accepting the integers, therefore we accept this under int datatype.print statement is used to display the sum of all three integers

Similar questions