Python is an interpreted, high-level and general-purpose programming language. Python's design philosophy emphasizes code readability with its notable use of significant whitespace.
number1 = int(input('Enter the first number:'))
number2 = int(input('Enter the second number:'))
number3 = int(input('Enter the third number:'))
sun = number1+number2+number3
print('The total of the three numbers is:',sum)
Download
0 formats
No download links available.
WAP - 2 || Program to obtain three numbers and print their sum in Python | NatokHD