how to solve code wars first python exercise code example
Example: what is the solution to the codewars first code
function multiply(a, b) {
const c = a * b
console.log(c)
}
multiply(2, 3)
function multiply(a, b) {
const c = a * b
console.log(c)
}
multiply(2, 3)