Write a Program in Python to find sum of digits of a given number.
Output: Enter Number to find sum of digits:123Sum of digits= 6 Explanation: What does this program do?It finds the sum of digits of a number entered by the user. Example:If the number is 123, the sum is 1 + 2 + 3 = 6 Line-by-Line Explanation1. Input from useri = int(input(“Enter Number to find sum