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")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: