There is a string and a number N. Print the N-th symbol of the string. The example shows how the result should look like.
Note, that you can escape characters in strings, through the use of a
backslash (
\)
and a character in a string template
. As an example, you can output the symbol
" using the
\" combination.
Sample Input: hello world 1 Sample Output: Symbol # 1 of the string "hello world" is 'h'
Sample Input: hyperskill 5 Sample Output: Symbol # 5 of the string "hyperskill" is 'r'