You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s=int(input('Enter the number '))
if(s!=0):
if(s<0):
print('Negative')
else:
print('Positive')
else:
print('given number is not positive and negative value')