operand-- c++

#include <iostream>

int main() {
    // Declare variables
    int operand1, operand2, result;

    // Input values for operands
    std::cout << "Enter the first operand: ";
    std::cin >> operand1;

    std::cout << "Enter the second operand: ";
    std::cin >> operand2;

    // Perform addition operation
    result = operand1 + operand2;

    // Display the result
    std::cout << "The sum of " << operand1 << " and " << operand2 << " is: " << result << std::endl;

    // Exit program
    return 0;
}