Return the largest of three numbers. Math.max only takes two at a time, so one call has to go inside another.
int largest(int a, int b, int c)
Examples
There are also 3 hidden tests you can't see. Solve the problem, not the examples.