I need to use this formula and read three values and present the highest of the three values read. Formula:
MaiorAB = (a+b+abs(a-b))/2
The three values are on the same receiving line. EX:
MaiorAB = input().split(' ')
Where and how can I use this formula?