list_1 = [12, 13, 14, 15, 16] list_2 = [10, 9, 8, 19, 16] if list_1[0] == list_2[-1]: return True else: return False run your code here#python #python3 #coding