EASY·Output prediction

What does this code print?

seen = {1, 2, 3}
seen.add(2)
seen.add(4)
print(len(seen))

Sign in to save your progress.