Simple arithmetic functions
pub fn add(x: Int, y: Int) -> Int
pub fn divide_by(x: Int, y: Int) -> Int
Divide the first arg by the second arg
pub fn multiply(x: Int, y: Int) -> Int
pub fn subtract_by(x: Int, y: Int) -> Int
Subtract the second arg from the first arg