1. Write a method that prints the digits of a given decimal number in a reversed order. For example 256, must be printed as 652.
2. Write a method that calculates the sum of two very long positive integer numbers. The numbers are represented as array digits and the last digit (the ones) is stored in the array at index 0. Make the method work for all numbers with length up to 10,000 digits.