# Write a function to gets a one to seven-digit integer, # and adds together all of its digits. # Then take the sum and do the following computation: # (((((sum + 9) * 2) - 4) / 2) - sum) # note: the computation must be in this exact order # For example, 1234567, the sum would be 28 # (((((28 + 9) * 2) - 4) / 2) - sum) # the result would be 7 # # you may assume the incoming number does not contain lead zeros def math_trick(number): result = 0 return result test1 = math_trick(1234567) test2 = math_trick(2468975) test3 = math_trick(345) test4 = math_trick(3) test5 = math_trick(93)