You are given four integer numbers as input, and you are given function maxOfTwo(a, b) that takes two integers and returns the maximum of them.
You need to define function maxOfFour(a, b, c, d) that takes in four integers and returns the maximum of them.
1 2 3 4
4
50 10 60 20
60
100 1000 10 0
1000