0
print( input()*input() ) Error
2 odpowiedzi
- 1
Your this code will give you error becz you multiplying two string which is not valid u can multiply one string with number like
"hello"*3 here gello will print 3 times but it won't work with two or more strings try like this
print( int(input())*int(input() ))
In this case u will get output
+ 1
Thank you A.S.