Write a python program to accept three integers and print their sum.
Answers
Answered by
5
Answer:
Sum of three numbers
a = int(input())
b = int(input())
print(a + b)
Explanation:
HOPE IT HELPS YOU
Answered by
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
History,
1 month ago
English,
1 month ago
Hindi,
10 months ago
Computer Science,
10 months ago
Math,
10 months ago