Answers for "accept a five digit number as input and print the sum of its digits as output. in python"

0

how to Write a program that accepts three decimal numbers as input and outputs their sum on python

from decimal import Decimal

a = Decimal(input())
b = Decimal(input())
c = Decimal(input())

print (a+b+c)
Posted by: Guest on January-07-2021

Code answers related to "accept a five digit number as input and print the sum of its digits as output. in python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language