# print a heading
print("\nAncient Roman Lottery\n")
# sets up array of numbers with 6 roman numbers
lotteryNumbers = ['III', 'IV', 'XIV', 'XXII', 'XXX', 'XLIV']
# repeats for the size of the array and prints each out element
for i in range(0, len(lotteryNumbers), 1) :
print(lotteryNumbers[i])
print('\n\n') # display blank line (2)