Challenge: Sum of Two Digits

Solve the Sum of Two Digits Problem.

We'll cover the following...

Problem


Sum of Two Digits Problem

Compute the sum of two single digit numbers.

Input: Two single digit numbers.

Output: The sum of these numbers.



Let’s start with the following pipeline: read the problem statement, design an algorithm, implement the solution, test, and debug it.

Input format: Integers aa and b ...