We are making cuts
You are given a string.
First, print the third character of the string.
On the second line, print the second-to-last character of the string.
On the third line, print the first five characters of the string.
On the fourth line, print the entire string except for the last two characters.
On the fifth line, print all characters at even indices (indexing starts from 0, so begin with the first character).
On the sixth line, print all characters at odd indices, starting with the second character of the string.
On the seventh line, print all characters in reverse order.
On the eighth line, print every other character in reverse order, starting with the last character.
On the ninth line, print the length of the string.
Phew... That seems to be everything... :)
Input
(see example)
Output
(see example)