Computer Science, asked by ayushisawalakhe, 5 months ago


Write a program using 'input' statement and 'if condition to
check whether a given number is positive, negative or zero.
Please answer fast

Answers

Answered by Imblank
1

Answer:

a = int(input())

if(a>0) :

print("Number is positive")

elif(a<0) :

print("Number is negative")

else :

print("Number is neutral")

Read my bio once

Similar questions