Check Number Get link Facebook X Pinterest Email Other Apps Write a python program to check whether a given number is positive /Negative or Zero a=int(input()) if a < 0: print("Negative") else: print("Positive") Comments
Comments
Post a Comment