WAP to find the sum of the digits of a number.
number = int(input("Enter a number: ")) sum_of_digits = 0 while number > 0: digit = number % 10 sum_of_digits += digit number = number // 10 print("Sum of digits:", sum_of_digits)
Enter a number: 4556787 Sum of digits: 42