Skip to content

Commit fadb2e0

Browse files
authored
Update calculator.py
1 parent 9302b85 commit fadb2e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def multiplication(x: int, y: int) -> int:
3434
Returns:
3535
int: The multiple of `x` and `y`.
3636
"""
37-
return x + y
37+
return x * y
3838

3939
def division(x: int, y: int) -> int:
4040
"""

0 commit comments

Comments
 (0)