Following is a program to find out whether the entered number is Positive, Negative or Zero :
a = int(input("Enter a number\n"))
if (a>0):
print(f"{a} is a positive no.")
elif (a<0):
print(f"{a} is a negative no.")
else:
print(f"{a} is equal to zero.")a is an integer

