pub fn naive_div(num: i32, d: i32) -> i32
This function computes num / d in a naive way that causes the program to panic if d = 0
num / d
d = 0