#B2049. Find the Maximum of Three Integers
Find the Maximum of Three Integers
Find the Maximum of Three Integers
Given three integers, determine the largest number among them. Mathematically, you are to compute:
$$max(a, b, c) = \max\{a, b, c\}.$$
This problem tests your basic programming skills in handling input and output as well as decision-making using conditional statements.
inputFormat
The input consists of a single line with three space-separated integers.
outputFormat
Output a single integer representing the largest of the three input numbers.
sample
3 5 2
5