write a program which prints positive if the number is positive negative if the number is negative or neutral if the number is 0.
Answers
Answered by
11
Answer:
A = int(input("Enter the first number"))
if A > 0:
print("Positive")
elif A < 0:
print("Negative")
Explanation:
Similar questions