def more_less(a, b): if a > b: print("a більше b") elif a < b: print("a менше b") elif a == b: print("a дорівнює b")