from random import randint
from matplotlib import pyplot

wachtrij = []

def aankomst_autos(tijdstip):
    aantal = randint(0, 10)
    for i in range(aantal):
        aankomsttijden.append(tijdstip)
        

def wegrijden_autos(aantal):
    totaal = 0
    for i in range(aantal):
        if len(aankomsttijden) > 0:
            totaal += aankomsttijden.pop(0)
    return totaal


x_waarden = list(range(60))
y_waarden = []

for tijdstip in range(60):




