Comment rédiger un programme qui accepte trois nombres décimaux en entrée et publie leur somme sur Python

from decimal import Decimal

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

print (a+b+c)
Bored Boar