#C10406. Reader Classification

    ID: 39608 Type: Default 1000ms 256MiB

Reader Classification

Reader Classification

Given the number of stories read each month over a period of 12 months, classify the reader as follows: a reader is considered a (\textbf{LOYAL READER}) if the number of months where they read at least 10 stories is strictly greater than the number of months where they read fewer than 10 stories; otherwise, the reader is classified as a (\textbf{REGULAR READER}).

Input will be provided via standard input as 12 space-separated integers. Your task is to output the correct classification on standard output.

inputFormat

The input consists of a single line containing 12 integers separated by spaces, where each integer (a_i) represents the number of stories read in the (i^{th}) month.

outputFormat

Output a single line containing the classification of the reader: either (LOYAL READER) or (REGULAR READER).## sample

9 11 5 20 18 7 13 9 6 10 12 8
REGULAR READER