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 #1
8 5
Output #1
8
Input #2
5 8
Output #2
8
Input #3
5 5
Output #3
5
Sign in to submit your solution and save your progress.