Write two functions:
first_arg() should return the first parameter passed in.last_arg() should return the last parameter passed in.first_arg(1, 2, 3) ➞ 1
last_arg(1, 2, 3) ➞ 3
first_arg(8) ➞ 8
last_arg(8) ➞ 8
None if the function takes no parameters.first_arg and last_arg functions should return the same value.