Write a method that takes an integer value and returns the sum of its digits reversed. For example, given the number 1324, the method should return 10, which is the sum of 1+3+2+4. Incorporate the method into an application that reads a value from the user and displays the result.