twistedtree commited on
Commit
76bca1d
·
verified ·
1 Parent(s): 9884528

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 + 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)}"
 
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)}"