x = {1,2,3} #makes a set
print(type(x))
y = {} #makes an empty dictionary
print(type(y))
