num1 = int(input(""))

if num1 > 0:
    print(num1, "es positivo")
elif num1 < 0:
    print(num1, "es negativo")
else:
    print(num1, "es neutro")

Embed on website

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