public static void Main()
Console.WriteLine("Hello World");
FOR all the number at the back of the array
SET Temp equal the addition of each number
get the remainder of the number divided by 10 to that index
Do it again for numbers before the decimal
"Good Enough (not perfect)"
FOR each DigitPosition in Number from least significant to most significant
COMPUTE Total as sum of FirstNum[DigitPosition] and SecondNum[DigitPosition] and Carry
STORE Total in Result[DigitPosition]