PHONEYR - Editorial

PROBLEM LINK:

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

Author: iceknight1093
Tester: mridulahi
Editorialist: iceknight1093

DIFFICULTY:

TBD

PREREQUISITES:

None

PROBLEM:

Given a year X, find the name of the smartphone released that year.

EXPLANATION:

As the statement specifies, print \text{'K'} followed by the last two digits of X.
To find the last two digits, the simplest way is to read X as a string and print its last two characters.

TIME COMPLEXITY:

\mathcal{O}(1) per testcase.

CODE:

Editorialist's code (Python)
s = input()
print('K' + s[2:])