Score : $100$ points
Given a string $S$ of length $N$ consisting of lowercase English alphabets, print the last character of $S$.
Input is given from Standard Input in the following format:
$N$ $S$
Print the last character of $S$.
5 abcde
e
The last character of $S = {}$abcde
is e
, so e
should be printed.
1 a
a