+ 1
I have tried this question so many times tried in many ways and still can't get it
Somebody wrote code to take two integer inputs and output their product. However, the code results in an error. Task Fix the code to output the product of two integer inputs. Sample Input 3 6 Sample Output 18
4 Antworten
+ 2
Let me see your tryout code so I can point you the way?
https://code.sololearn.com/W3uiji9X28C1/?ref=app
+ 2
Can you tell us what the error says?
And can you copy+paste your code into a SoloLearn "code bit", you can then share it here by using the plus icon.
+ 2
1.Take two inputs as integers
2.Use '*' for to multiply them
3.Use 'print' to print the product.