#101. 判断青少年数

    ID: 101 Type: Default 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>codingbatWarmup-1gesp1条件结构

判断青少年数

Check for "Teen" Numbers

Background

Congcong is learning about number properties. He found some numbers interesting and gave them a special name.

Problem Description

We'll say that a number is "teen" if it is in the range 13..1913..19 inclusive. Given 33 integer values, return true if 11 or more of them are teen.

Input Format

Input is given from standard input in the following format.

aa bb cc Three integers representing the given values.

Output Format

Output is printed to standard output in the following format.

Output true if at least one number is a "teen" number; otherwise, output false.

Sample

13 20 10
true
20 19 10
true
20 10 13
true

Sample Explanation

Sample 1: 1313 is a "teen" number, so output true. Sample 2: 1919 is a "teen" number, so output true. Sample 3: 1313 is a "teen" number, so output true.

Constraints

Time limit: 11 second, Memory limit: 10241024 KiB for each test case.