nums = [5, 12, 7, 9, 21, 7, 14]
aa = nums.count(7)
print("11:",aa)
if 99 not in nums:
	nums.append(99)
print("33",nums)