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
4 changes: 4 additions & 0 deletions 015_add_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
# * Returns the result

# YOUR FUNCTION GOES BELOW THIS LINE
def add_numbers(num_a, num_b):
return num_a + num_b

result = add_numbers(5, 3)
print(result)


# YOUR FUNCTION GOES ABOVE THIS LINE
Expand Down