Multiply (Intro)

Multiply (Intro)

This is an intro mission, the purpose of which is to explain how to solve missions on CheckiO. If you want to know how to get the maximum out of using CheckiO, check out our blog post "From Basic to Advance usage".

This mission is the easiest one. Write a function that will receive 2 numbers as input and it should return the multiplication of these 2 numbers.

Input: Two arguments. Both are of type int.

Output: Int.

Examples:

assert mult_two(3, 2) == 6
assert mult_two(0, 1) == 0

A series of hints below will help you to understand how to solve the mission. Start the series by clicking on "I don’t know how to solve that mission."