Задание
Сколько элементов будет содержать множество a_set после выполнения программы?
a_set = {11, 3, 16, 10, 15, 22, 28, 36, 45}
print\(a\_set\)
a_set.discard\(10\)
print\(a\_set\)
a_set.discard\(10\)
print\(a\_set\)
a_set.remove\(22\)
print\(a\_set\)