Compiler not accepting input

in the question the compiler is showing error in this command
N=int(input())
can you please help ?

#to check prime number
N=int(input())
for i in range (2,N/2):
if N%i==0:
print(" Not Prime")
else:
print(“Prime”)

Hey @Pranav-Gupta-1716510788408154, when you are runnning your code on ide you need to first provide the custom input, so to do this, first click on input button on top left corner next to run button, than provide the custom input, and than click on run button.

Hope this cleared your doubt. If you find that your doubt is resolved completely, plz close the doubt in my doubts.
:blush: