zulkifal-turing commited on
Commit
a0f16d0
·
verified ·
1 Parent(s): 8bdab63

Upload calculator_gold.py

Browse files
Files changed (1) hide show
  1. calculator_gold.py +6 -0
calculator_gold.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def add(a, b):
2
+ return a + b
3
+
4
+ # Test the function
5
+ result = add(5, 3)
6
+ print(f"5 + 3 = {result}")