Largest of Three Numbers
Input: `a`, `b`, `c`. Return: The largest number.
Example
Input: 1, 2, 3
Output: 3
Need a hint?
- Compare a with b and c
Run your code to see output
Input: `a`, `b`, `c`. Return: The largest number.
Input: 1, 2, 3
Output: 3
Run your code to see output