This problem asks you to compare two integers and return the larger one.
If the first number is greater than or equal to the second number, print the first number. Otherwise, print the second number.
The task is only about comparing two values and choosing the bigger result.
Example Input & Output
Both values are equal, so the result is 7.
12 is larger than 3.
9 is larger than 4.
Algorithm Flow

Solution Approach
Start by reading the two integers.
After that, compare the first number with the second number.
If the first number is greater than or equal to the second number, print the first number.
If that condition is false, print the second number instead.
This works because one of the two numbers must be the larger value, and if they are equal, either one is a correct result.
Best Answers
Solutions Coming Soon
Verified best solutions for this Challenge are still being analyzed and will be available soon.
Comments (0)
Join the Discussion
Share your thoughts, ask questions, or help others with this Challenge.
