An open API service indexing awesome lists of open source software.

https://github.com/sabrinemokhtari31/cpp-project-01_sum_two_numbers


https://github.com/sabrinemokhtari31/cpp-project-01_sum_two_numbers

c-plus-plus cpp

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Sum of Two Numbers

A simple C++ program that takes two integers from the user and calculates their sum.

## How it works
1. Program prompts the user to enter two numbers.
2. It stores the input in variables `num1` and `num2`.
3. It calculates the sum and prints it to the console.

## Usage
Compile and run:
```bash
g++ 01_sum_two_numbers.cpp -o sum
./sum
```