So schreiben Sie ein Programm, das drei Dezimalzahlen als Eingabe akzeptiert und ihre Summe auf Python ausgibt

from decimal import Decimal

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

print (a+b+c)
Bored Boar