Write predicates to compare Peano numbers. In this system, \(0\) is presented by 0, \(1\) by s(1), \(2\) by s(s(0)), and so on. To be precise, \(n\) is represented by taking 0 and wrapping it \(n\) times with s/1.

The predicates that need to be written are:

Note that all Peano numbers are positive, to implement p_sub/3 you may limit the definition to positive integers. Try to use p_mul/3 to divide, does that work?