Computer Science, asked by ammararizwan5, 2 days ago

A C program to take 3 decimal numbers as input and find their difference.

Answers

Answered by sorathiya
0

Answer:

python :-

from decimal import Decimal

a = Decimal(input())

b = Decimal(input())

c = Decimal(input())

print (a+b+c)

Similar questions