# Learning function
# def is short for: define


def PrintSomeStuff():
    print('Stefan just ate some chicken.')
    print('Now is time for exercise.')

def PrintSomeMoreStuff():
    print('***** Second.') 



PrintSomeMoreStuff()

