Computer Science, asked by trisha5247, 5 months ago

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 dakshsingh24
11

Answer:

A = int(input("Enter the first number"))

if A > 0:

print("Positive")

elif A < 0:

print("Negative")

Explanation:

Similar questions