Saved Bookmarks
| 1. |
Write a program to input a three digit number and print the sum of its digits. |
|
Answer» Explanation: a=int(INPUT ("enter a number")) b=int(input ("enter a second number")) c=int(input ("enter a THIRD number")) sum=a+b+c print ("sum of "a,b,c "is",sum) PLEASE mark it as BRAINLIEST |
|