How to implement?

Report a typo

Given two non-negative integers represented as strings, create a function that returns their product. Don't print anything, just create a function.

Sample Input 1:

8
11

Sample Output 1:

88
Write a program in Python 3
def prod(first, second):
...
___

Create a free account to access the full topic