set-up / calculator_gold.py
zulkifal-turing's picture
Upload calculator_gold.py
a0f16d0 verified
raw
history blame contribute delete
99 Bytes
def add(a, b):
return a + b
# Test the function
result = add(5, 3)
print(f"5 + 3 = {result}")