def funktion(a, b=5, c=10):
    print('a ist', a, 'und b ist', b, 'und c ist', c)

funktion(3, 7)
funktion(25, c=24)
funktion(c=50, a=100)
