Ответ:
def f(a, b, c):
if m(a, b) == a and m(a, c) == a:
return a
elif m(a, b) == b and m(b, c) == b:
return b
else:
return c
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
def f(a, b, c):
if m(a, b) == a and m(a, c) == a:
return a
elif m(a, b) == b and m(b, c) == b:
return b
else:
return c
Объяснение: