Write a function that returns the largest of three given numbers.
Constraints
Example
```python >>> max_of_three(1, 2, 3) 3 >>> max_of_three(5, 5, 5) 5 >>> max_of_three(-1, -2, -3) -1 >>> max_of_three(2.5, 2.6, 2.4) 2.6 ```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints