#abc244a. [abc244_a]Last Letter

[abc244_a]Last Letter

Problem Statement

Given a string SS of length NN consisting of lowercase English alphabets, print the last character of SS.

Constraints

  • NN is an integer.
  • 1N10001 ≤ N ≤ 1000
  • SS is a string of length NN consisting of lowercase English alphabets.

Input

Input is given from Standard Input in the following format:

NN SS

Output

Print the last character of SS.


Sample Input 1

5
abcde

Sample Output 1

e

The last character of S=S = {}abcde is e, so e should be printed.


Sample Input 2

1
a

Sample Output 2

a