Create a function that takes an Arabic number and converts it into a Roman number.
convert_to_roman(2) ➞ "II" convert_to_roman(12) ➞ "XII" convert_to_roman(16) ➞ "XVI"