number = int(input("Enter Number to Check"))
print("Number to be checked :", number)
if number>0:
print("This is a positive number")
elif number<0:
print("This is a negative number")
else:
print("This is neutral")
To embed this project on your website, copy the following code and paste it into your website's HTML: