CHEFPAROLE - Editorial

PROBLEM LINK:

Practice
Contest: Division 1
Contest: Division 2
Contest: Division 3
Contest: Division 4

Author: surajmsharma
Tester: mexomerf
Editorialist: iceknight1093

DIFFICULTY:

Cakewalk

PREREQUISITES:

None

PROBLEM:

Chef has spent X days in prison, and must spend at least 7 days to be released on parole.
Can he be released on parole?

EXPLANATION:

The answer is Yes if X \geq 7 and No otherwise.

TIME COMPLEXITY:

\mathcal{O}(1) per testcase.

CODE:

Editorialist's code (PyPy3)
print('yes' if int(input()) >= 7 else 'no')