#!/usr/bin/env python3

l = ["Create", "a", "list", "of", "words"]

print(l)

s = input()

if s in l:
    print("It's in the list")
else:
    print("It's not in the list")