Multiply Strings
Medium📝 Description
Multiply two numbers represented as strings
Input Format
Two strings num1 and num2
Output Format
Product as string
Constraints
1 ≤ num1.length, num2.length ≤ 200
🔍 Sample Input
"2"
"3"
✅ Sample Output
"6"
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run