num = int(input("Input a number")) if num >= 0: print("Positive Number") else: print("Negative Number")