TEST: Need help with Python code

from random import randint
input=randint(1,99)
while(input!=42):
print(input)
input=randint(1,99)
print(“End of output”)

Generating the input from randint. Getting a runtime error(NZEC)

Even its a TEST question, you should provide a question here at least.

Sorry !! This is the question

Your program is to use the brute-force approach in order to find the Answer to Life, the Universe, and Everything. More precisely… rewrite small numbers from input to output. Stop processing input after reading in the number 42. All numbers at input are integers of one or two digits.

the input is provided by the online judge. you don’t need to generate it yourself. that’s the point !

1 Like