Create a for loop that iterates through all the items of the following list and prints out the item if the item is greater than 2.
for
mylist = [1, 2, 3, 4, 5]
Expected output:
345