This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | |