Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -27,7 +27,7 @@ def mulitply_two_numbers(x:int, y:int)-> str:
|
|
| 27 |
y: the second number
|
| 28 |
"""
|
| 29 |
try:
|
| 30 |
-
ans = x
|
| 31 |
return f"The multiplication of '{x}' and '{y}' is: {ans}"
|
| 32 |
except Exception as e:
|
| 33 |
return f"Error multiplying '{x}' and '{y}': {str(e)}"
|
|
|
|
| 27 |
y: the second number
|
| 28 |
"""
|
| 29 |
try:
|
| 30 |
+
ans = x * y
|
| 31 |
return f"The multiplication of '{x}' and '{y}' is: {ans}"
|
| 32 |
except Exception as e:
|
| 33 |
return f"Error multiplying '{x}' and '{y}': {str(e)}"
|