Computer Science, asked by Cheenapriya, 11 months ago

WAPIP to accept 3 numbers and
the sum of those 3 numbers.
display​

Answers

Answered by AmartyaChowdhury
0

If you want the program in Python, then the code is following :-

n1 = float(input("Enter first number : "))

n2 = float(input("Enter second number : "))

n3 = float(input("Enter third number : "))

result = str(n1 + n2 + n3)

print("The sum is " + result)

Similar questions