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

Maximum Function

Create a function named mayor.

The function must receive 2 integers and return the greater one.

Required function

int mayor(int a, int b)

Input

Two integers in one line.

Output

The greater number.

Examples

Input:

5 3

Output:

5

Input:

2 8

Output:

8