Submission not evaluated

Can you please check as to why my code can’t be submitted for evaluation. Even though it passes the test cases.

hey @rishabb0220_574491cc1db7c5b2 ,
share your code. will check it.

tc = int(input())
for k in range(0, tc):
lower, upper = map(int, input().split(" “))
for num in range (lower,upper+1):
if num>1:
for i in range (2, num):
if (num%i)==0:
break
else:
print(num, end=” “)
print(”\r")

How do I ensure the indentation is correct in the code. Is there any other way to share the code?

copy directly from your ide to ide.codingblocks.com , and save it there , and then share me it here

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.