Project 22: Adding 2-Digit Numbers

If you were to add 57 + 68:

firstTens = 5

firstOnes = 7

secondTens = 6

secondOnes = 8

Since 57 + 68 = 125

sumHundreds = 1

sumTens = 2

sumOnes = 25

Project:  Variables 'firstTens', 'firstOnes', 'secondTens', and 'secondOnes' have been initialized to the values below.  Appropriately initialize the value of 'sumHundreds', 'sumTens', and 'sumOnes'.

Note: If your code works for 5 test cases in a row, you can enter your e-mail address.