cpp super

#include <iostream>

// Function to calculate the sum of two numbers
int add(int a, int b) {
    return a + b;
}

int main() {
    // Declare and initialize variables
    int num1 = 5, num2 = 7, result;

    // Call the add function and store the result
    result = add(num1, num2);

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

    // Return 0 to indicate successful execution
    return 0;
}