PROBLEM LINK:
Practice
Contest: Division 1
Contest: Division 2
Contest: Division 3
Contest: Division 4
Tester: iceknight1093
Editorialist: iceknight1093
DIFFICULTY:
TBD
PREREQUISITES:
None
PROBLEM:
A team that scores 12 or more points in the group stage qualifies for the next stage.
A certain team has X points. Will they qualify?
EXPLANATION:
As the statement says, the answer is Yes
if X \geq 12 and No
otherwise.
Check this using an if
condition.
TIME COMPLEXITY:
\mathcal{O}(1) per testcase.
CODE:
Editorialist's code (Python)
x = int(input())
print('Yes' if x >= 12 else 'No')