Testing your code..
Write a function sum_of_digits that takes an integer value as an argument and returns the sum of digits of a given number.
Examples
sum_of_digits(123) ➞ 6sum_of_digits(45) ➞ 9sum_of_digits(555) ➞ 15
Note: