Largest of Two Numbers

Easy
#logic #comparison

Input: `a`, `b`. Return: The larger number.

Example

Input: 5, 3
Output: 5
Need a hint?
  • Use if a > b
Run your code to see output