Given two non-negative integers represented as strings, create a function that returns their product. Don't print anything, just create a function.
Algorithms in Python
How to implement?
Report a typo
Sample Input 1:
8
11Sample Output 1:
88Write a program in Python 3
def prod(first, second):
...
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.