#C5388. Maximum of Three Integers
Maximum of Three Integers
Maximum of Three Integers
In this problem, you are given three integers, and your task is to determine the maximum among them. More formally, given three integers (x), (y), and (z), you need to output the largest integer. You will be provided the input via standard input (stdin) and your program should output the answer to standard output (stdout).
inputFormat
The input consists of three integers separated by spaces or newlines. Each integer (x, y, z) satisfies (-10^9 \leq x, y, z \leq 10^9).
outputFormat
Output a single integer which is the maximum of the three provided integers.## sample
5 12 8
12