Largest of Three Numbers

Medium
#logic #comparison

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