Drop links or images here to add them to the editor.

Maximum of Three Function

Create a function named mayorDeTres.

The function must receive 3 integers and return the greatest one.

Required function

int mayorDeTres(int a, int b, int c)

Input

Three integers in one line.

Output

The greatest number.

Example

Input:

5 3 8

Output:

8