#B2617. Alphabet Position Query
Alphabet Position Query
Alphabet Position Query
It is well known that there are 26 letters in the English alphabet, and \(A\) is the first letter. Now, answer the following two questions:
- What is the position of the letter \(M\) in the alphabet?
- What is the 18th uppercase letter?
Your program should output a number and a letter separated by a newline. The expected output is fixed for these questions.
inputFormat
There is no input for this problem. However, for testing purposes, dummy input values are provided.
outputFormat
Output two lines: the first line is the position of letter M
in the alphabet, and the second line is the 18th uppercase letter.
Note: The correct answers are: 13
for letter M and R
for the 18th uppercase letter.
sample
dummy
13
R
</p>