# Voegt de (geordende) bestanden transacties-1.txt en transacties-2.txt samen
# tot één enkel bestand.
with open ("transacties-1.txt", "r") as bestand_1:
    with open ("transacties-2.txt", "r") as bestand_2:
        with open ("transacties.txt", "w") as bestand_3:

