Generation

generate functionSun, 05 Mar 2023

33

def add(a, b): return a + b def sub(a, b): return a - b def mul(a, b): return a * b def div(a, b): return a / b add(1, 2) sub(1, 2) mul(1, 2) div(1, 2)

Want to kickstart your project?Use the new AI Studio to create your code