IDESM - Editorial

PROBLEM LINK:

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

Author: iceknight1093
Tester: wasd2401
Editorialist: iceknight1093

DIFFICULTY:

TBD

PREREQUISITES:

None

PROBLEM:

The ides of March is the 15-th of March.
Today is the N-th of March, is it the ides of March?

EXPLANATION:

The answer is Yes if N = 15 and No otherwise.
This can be checked using an if condition.

TIME COMPLEXITY:

\mathcal{O}(1) per testcase.

CODE:

Editorialist's code (Python)
print('Yes' if int(input()) == 15 else 'No')