#!/usr/local/cpython-3.9/bin/python3

"""
Just output the number of cores the machine we're running on has.

This will include hyperthreads.
"""

import os

print(os.cpu_count())