{}
run-icon
main.py
def hello(name): print("مرحباً", name) hello("أحمد") def add(a, b): return a + b result = add(5, 7) print(result)
Output