Question: 
Write a function to convert the given set into ordered tuples.


Model's Code:
def set_to_tuple(s):
    return tuple(sorted(s))



Sample Correct Code:
def set_to_tuple(s):
  t = tuple(sorted(s))
  return (t)


Asserts:
assert set_to_tuple({1, 2, 3, 4, 5}) == (1, 2, 3, 4, 5)
assert set_to_tuple({6, 7, 8, 9, 10, 11}) == (6, 7, 8, 9, 10, 11)
assert set_to_tuple({12, 13, 14, 15, 16}) == (12, 13, 14, 15, 16)


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 341 of 974: 247/341 (72.43401759530792%): success