// File: exercise1.cpp
// Super easy exercise: Define variables and handle them through functions

#include <iostream>
using namespace std;

// Function to add two numbers


int main() {
    // Define two integer variables
    
    // Call function and print result
    
    return 0;
}

