//! Math Utils
//!
//! gives you all the tools to help you building math problems
/// Adds one to a number that is specified in the arguments
/// # Examples
/// ```
/// let x = 5;
/// let y = crates_testing_bilal::add_one(x);
/// assert_eq!(y, 6);
/// ```
/// Adds two to the number specified in the arguments
/// # Examples
/// ```
/// let x = 5;
/// let y = crates_testing_bilal::add_two(x);
/// assert_eq!(y, 7);
/// ```