from itertools import combinations
import operator
operators = [
(operator.add, "+"),
(operator.mul, "*"),
(operator.sub, "-"),
(operator.truediv, "/")
]
numbers = [24, 22, 81, 4, 72, 2355, 2, 3, 2358]
for n1, n2 in combinations(numbers, 2):
for oper in operators:
result = oper[0](n1, n2)
if result in numbers:
print("{}{}{}={}".format(n1, oper[1], n2, result))