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

0

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

Write a program that accepts three decimal numbers as input and outputs their sum.
Posted by: Guest on October-06-2021
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 "how to Write a program that accepts three decimal numbers as input and outputs their sum on python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language