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