Problem2235--Last Letter

2235: Last Letter

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Time Limit: 2 sec / Memory Limit: 1024 MB

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.
  • 1 ≤ N ≤ 10001N1000
  • SS is a string of length NN consisting of lowercase English alphabets.

Input

Input is given from Standard Input in the following format:
NNSS

Output

Print the last character of SS.

Sample Input Copy

5
abcde

Sample Output Copy

e

HINT

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

Source/Category