pub fn add(a: i32, b: i32) -> i32
Adds two numbers together
let answer = cargo_io::add(1,2); assert_eq!(3, answer);