R-script to enter a 3-digits number from the keyboard, then find out sum of all the 3-digits. code example
Example: Determine the sum of al digits of n
def sum_of_digits(n):
sum = 0
while (n != 0):
sum = sum + int(n % 10)
n = int(n/10)
return sum