#157. intMax

intMax

Background

Description

Given three int values, a b c, return the largest.

Format

Input

Output

Samples

1 2 3
3
1 3 2
3
3 2 1
3

Limitation

1s, 1024KiB for each test case.