🔖 Background Information

N/A

🎯 Problem Statement

Write a program that asks the user for two numbers. Then, it should return the sum of those two numbers.

✅ Acceptance Criteria

Your program should…

  • Prompt the user for one number, then another.
  • Print out the sum of the two numbers on the console.

📋 Dev Notes

  • You do not need to worry about validating the input in any way. You can assume that the user will always enter a valid integer.

🖥️ Example Output

./add.out
 
What is the first number?  4
What is the second number?  9
 
The sum of the two numbers is 13.

📘 Works Cited

N/A