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.
Two integers: a and b.
Print the maximum of the two.
[{'input': '8\n5', 'output': '8'}, {'input': '5\n8', 'output': '8'}, {'input': '5\n5', 'output': '5'}]