Generation

generate functionWed, 19 Apr 2023

To find the sum and average of two integer numbers

def sum_and_avg(a, b): print("Sum is", a + b) print("Average is", (a + b) / 2) sum_and_avg(5, 6)

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