A. White absorbs all light and reflects none so it is cooler.
Answer:
I don't know you should figure that out good luck
Explanation:
good luck
```
#!/usr/local/bin/python3
foo = float( input( "Enter a number: " ) )
if( foo < 0.0 ):
print( "negative" )
elif( foo > 0.0 ):
print( "positive" )
else
print( "zero" )
exit( 0 )
```