27.py 1 2 3 4 5 6 7num = int(input("Enter A Number : ")) total = 0 for digit in str(abs(num)): total += int(digit) print(f"Sum Of Digits : {total}")