In Python 3. It reads correctly the 1st and the 2nd variable when they have the highest value. But the 3rd is not.
n1 = int(input("1st Number:\n"))
n2 = int(input("2nd Number:\n"))
n3 = int(input("3rd Number:\n"))
if n1 > n2 and n3:
print(f'\033[1;31m{n1}\033[m')
elif n2 > n1 and n3:
print(f'\033[4;32m{n2}\033[m')
elif n3 > n1 and n2:
print(f'\033[33m{n3}\033[m') #When is the highest value it's not considered.