The slicing method is the solution to this question.
For the first word, you would want to slice using positive index.
For the second word, you would want to slice using negative index.
For example:
To get the first 2 characters from the first word,
first[:2]
To get the last 2 characters from the second word,
second[-2:]