Solution: Functions

Create a function that:

  1. has two parameters, x and y
  2. if x > y: return x-y
  3. else : return y-x

pass (4,3) to the function you designed