#B2617. Alphabet Position Query

    ID: 11256 Type: Default 1000ms 256MiB

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:

  1. What is the position of the letter \(M\) in the alphabet?
  2. 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>