diff --git a/show_sum/main.cpp b/show_sum/main.cpp new file mode 100644 index 0000000..8538509 --- /dev/null +++ b/show_sum/main.cpp @@ -0,0 +1,13 @@ +#include + +int main( void ) { + size_t one; + size_t two; + size_t sum; + std::cout << "Enter the first number: "; + std::cin >> one; + std::cout << "Enter the second number: "; + std::cin >> two; + sum = one + two; + std::cout << "The sum of " << one << " and " << two << " is " << sum << std::endl; + } \ No newline at end of file