how to Write a program that accepts three decimal numbers as input and outputs their sum on python code example
Example: 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)