# Write an expression using membership operators that prints "Special number" if special_num is one of the special numbers stored in the list special_list = [-99, 0, 44].

#Sample output with input: 17

special_list = [-99, 0, 44]
special_num = int(input())

if special_num in special_list: 
    print('Special number')
else: 
    print('Not special number')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: