Computer Science, asked by goku228, 6 months ago

Ewrite the code a=10 if a>0 print ( " a is positive ) otherwise print ("negative "

Answers

Answered by saumitraverma04
0

in python,

a = 19

if a>0:

   print("a is positive ")

else:

   print ("negative")

Similar questions