Answer:
Following are the program in Python language
special_list= [-99, 0, 44] # as mention in the question
special_num = int(input()) # taking the user input..
if special_num not in special_list: # checking the condition
print('not Special number') #display message
else:
print('special number') #display message
Output:
523
not Special number
-99
special number
Explanation:
Following are the description of the program.
- Declared an array special_list and store integer value.
- Read the integer value by using input function and store them into special_num variable.
- Check the condition if number exits in array it print special number otherwise not Special number.