def greet(name): return f"Hello, {name}! You're using chipi." def add(x, y): return x + y def reverse_string(s): return s[::-1]