Last active
July 18, 2019 06:53
-
-
Save Jayavardha/83ad74a98a7e8bea9dfe533301f60545 to your computer and use it in GitHub Desktop.
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") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment