0
[Solved] How do i solve the code below?
x=input() y=input() Task: Given the code above, output the input x repeated y time. My_Attempt x=input() y=input() print( int(x) * int(y))
17 Answers
+ 4
don't try this code in solo learn compiler try it for example in pydroid3
x=int(input())
y=int(input())
res=x*y
print(res)
+ 9
print(input()*int(input()))
+ 6
x=input()
y=int(input())
print(x*y)
+ 3
print(x*int(y))
+ 2
Abraham Zimba
Are the test cases failing with this code?
print(input() * int(input()))
+ 1
Please check this...
x = input()
y = input()
print( str(x)*int(y))
0
Test cases failed still
0
print(input()*int(input())
5/5 test cases failed why?
0
x=input()
y=int(input())
print(x*y)
0
x = input()
y = int(input())
print(x*int(y))
0
x = input ()
y = int (input())
print ( x * y)
0
x=input()
y=int(input())
Print("x"*y)
0
x=str(input());
y=int(input());
for i in range (y):
print (x);
0
Dreamhole you rock!
0
X= int(input())
Y=int(input())
Z=X*Y
print (Z)
0
My I'd not working