Source code for kyu_8.multiply.multiply
"""
Solution for -> Multiply problem.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
"""
[docs]
def multiply(a: int, b: int) -> int:
"""
Multiply two numbers and return the result.
:param a: int
:param b: int
:return: int
"""
return a * b