ALGOFINALS - Editorial

PROBLEM LINK:

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

Author: raysh07
Tester: apoorv_me
Editorialist: iceknight1093

DIFFICULTY:

TBD

PREREQUISITES:

None

PROBLEM:

Algomaniac finals will be held on March 17, while Shreyan can only visit Jadavpur University on March X.
Can he attend the finals?

EXPLANATION:

The answer is Yes if X=17 and No otherwise.

TIME COMPLEXITY:

\mathcal{O}(1) per testcase.

CODE:

Editorialist's code (Python)
x = int(input())
print('Yay' if x == 17 else 'No')