0
Stuck on this, I think theres a bug with the app
x = input("hi") y = int(input(5)) print (x * y) The result is hi5hihihihihi
3 RĂ©ponses
+ 5
# the correct syntax is:
x = input()
y = int(input())
print (x * y)
+ 1
Bug is not in app bug is in your code.
Do not pass anything inside input function because it will be also print.
0
I missunderstood this completely. Thanks