Using the code shown below, what will be displayed when the input is as follows:
Input Number
If Number < 0 Then
prepare "1"
Else
If Number == 0 Then
prepare "2"
Else
prepare "3"
End If
End If
prepare "DONE"
a. Input: -1
Output:
b. Input: 0
Output
c. Input: 1
Output