#include "add.hpp"

namespace arithmetic {
int add(int left, int right) {
    return left + right;
}
}
