# eks4-3-1.py

# Funktion returnere summen af to tal
def plus(a, b):
    return a + b

print(str(plus(4, 6)))
