# Nedbetalingsplan
belop = 75000
rentesats = 5.69
ant_termin = 60
avdrag = belop / ant_termin
restlan = belop
for termin in range(1, ant_termin + 1):
rente = restlan * rentesats / 100 / 12
restlan = restlan - avdrag
terminbelop = avdrag + rente
print(termin, round(restlan), round(avdrag), round(rente), round(terminbelop))