Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
zulkifal-turing
/
set-up
like
0
Dataset card
Files
Files and versions
xet
Community
main
set-up
/
calculator_gold.py
zulkifal-turing
Upload calculator_gold.py
a0f16d0
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
99 Bytes
def
add
(
a, b
):
return
a + b
# Test the function
result = add(
5
,
3
)
print
(
f"5 + 3 =
{result}
"
)