/**
* @file math_utils.h
* @brief Mathematical utility functions
*/
/**
* @brief Add two numbers
* @param a First number
* @param b Second number
* @return Sum of a and b
*/
int ;
/**
* @brief Multiply two numbers
* @param a First number
* @param b Second number
* @return Product of a and b
*/
int ;
// MATH_UTILS_H