See your score below
Catwords

Catwords are words that contain the three letters C A or T (lowercase or uppercase) in any order in any part of the word.

Task:
Write a program that takes, as input a number of words and outputs n c where n is the total number of words provided, and c equals the number of cat words the list of words contains.

Input example:
8
Catherine
the
cat
jumped
over
the
tacky
camel

Output example:
8 3

Constraints:
Input will consist of an integer and no more than 10 words.

Note: For Java (and similar) programs the grader expects the name of the main class to be: catwords