Given the input 123, how would you get 1, 2, and 3 separately?
Implement the function below to return the integer's decimal digits from left to right. Use arithmetic operations rather than converting the number to a string.
Input: A non-negative integer number.
Output: A list containing its digits in left-to-right order.
def separate_digits(number):