Python
python A simple Python program # This is a simple Python script def greet(name):return f”Hello, {name}! Welcome to Python.” def add_numbers(a, b):return a + b if __name__ == “__main__”:user_name = input(“Enter your name: “)print(greet(user_name)) x = int(input(“Enter first number: “))y…
