Lee el código con atención
import math
CHUNKS = 30 # 30 one-minute chunks of a 30-min video
PROFILES = 5 # 240p, 480p, 720p, 1080p, 4K
COST_PER_CHUNK = 10 # seconds of compute per (chunk, profile)
WORKERS = 50 # parallel transcode workers in the fleet
seq = CHUNKS * PROFILES * COST_PER_CHUNK
jobs = CHUNKS * PROFILES
par = math.ceil(jobs / WORKERS) * COST_PER_CHUNK
print(f"seq={seq} par={par} speedup={seq // par}")¿Qué imprimirá el programa? Escribe aquí: