# Function Example

def greet(name):
    return "Hello, " + name

print(greet("Alice"))
print(greet("Bob"))
