Skip to content

Instantly share code, notes, and snippets.

a=int(input("enter the value of a"))
if(a<0):
print("the number is negative integer")
else:
print("the number is a positiv integer")
if(a==0):
print("the number is zero")