Error in test case 2

what is the error in this code
a=int(input())
count=0
if a==2:
print(“Prime”)
else :
for i in range(2,a):
if a%i==0:
print(“Not Prime”)
count+=1
if count==0:
print(“Prime”)

Find whether the number is prime or not

Kindly share the code link after saving it on https://ide.codingblocks.com/
It will help us assist you better. Thank you.