''' Write a python function that compares two integers and returns true is the first integer is the highest ''' def is_first_integer_highest(a, b): if a > b: return True else: return False #example a = 10 b = 5 if is_first_integer_highest(a, b): print(f"{a} is the highest integer!") else: print(f"{b} is the highest integer!")