# eks4-3-4.py

# Giv flere resultater tilbage
def flere_resultater(a, b):
    return a+1, b+1

print(flere_resultater(1, 1))
