Spaces:
Sleeping
Sleeping
update app.py
Browse files
app.py
CHANGED
|
@@ -58,6 +58,7 @@ def my_calculator(intg1: int, intg2: int) -> int:
|
|
| 58 |
intg2: The second number in the calculation.
|
| 59 |
"""
|
| 60 |
product = intg1 * intg2
|
|
|
|
| 61 |
return f"The product of {intg1} and {intg2} is {product}."
|
| 62 |
|
| 63 |
duckduckgo_tool=DuckDuckGoSearchTool()
|
|
|
|
| 58 |
intg2: The second number in the calculation.
|
| 59 |
"""
|
| 60 |
product = intg1 * intg2
|
| 61 |
+
print(product)
|
| 62 |
return f"The product of {intg1} and {intg2} is {product}."
|
| 63 |
|
| 64 |
duckduckgo_tool=DuckDuckGoSearchTool()
|