Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion 015_add_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@

# YOUR FUNCTION GOES BELOW THIS LINE


def add_numbers(num1, num2):
return num1 + num2
result = add_numbers(5, 10)
print("The sum is:", result)

# YOUR FUNCTION GOES ABOVE THIS LINE

Expand Down