Hi ,
as i checked my code is running fine when i am providing the inputs manually.
lower= int(input())
upper= int(input())
for num in range (lower,upper+1):
if num>1:
for i in range (2,num):
if(num%i)==0:
break
else:
print(num)
Still i am getting RUN error message while submitting it.
any light on this.