Maximum

Problem Statement

Write a program that reads two integers a and b and prints the maximum using only integer arithmetic (+, -, *, //, %, =). Do not use max function or conditionals.

Input

Two integers: a and b.

Output

Print the maximum of the two.

Example

[{'input': '8\n5', 'output': '8'}, {'input': '5\n8', 'output': '8'}, {'input': '5\n5', 'output': '5'}]