Problem9585--ABC244 —— A - Last Letter

9585: ABC244 —— A - Last Letter

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Given a string $S$ of length $N$ consisting of lowercase English alphabets, print the last character of $S$.

Input

Input is given from Standard Input in the following format:

```
$N$
$S$
```

Output

Print the last character of $S$.

Constraints

-   $N$ is an integer.
-   $1 ≤ N ≤ 1000$
-   $S$ is a string of length $N$ consisting of lowercase English alphabets.

Sample 1 Input

5
abcde

Sample 1 Output

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

Sample 2 Input

1
a

Sample 2 Output

a

Source/Category