Maximum Of Two Numbers Function

You are given two integer numbers as input, you need to define function max(a, b) that takes integer a and integer b and returns the maximum of them.

Example 1

Input

10 11

Output

11

Example 2

Input

12 5

Output

12

Example 3

Input

3 9

Output

9

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.