以下のコードで条件に合う要素の個数を正しく数えるにはどうすればよいですか? ```python temperatures = [23, 18, 25, 19, 22] count = 0 for temp in temperatures: if temp >= 20: # ここに何を書く? ```