def minmax(a, b):
    return min(a, b), max(a, b)


x, y = minmax(17, 10)

d, m = divmod(17, 5)  # standardní funkce v Pythonu

print(x, y, d, m)
