#ABC244A. [ABC244A] Last Letter

[ABC244A] Last Letter

Score : 100100 points

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 \leq N \leq 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.

5
abcde
e

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

1
a
a