Return a specific letter
Given a string and an integer, return the specific letter based on the given number.
Sample Code:
def specificLetter(s,n):
# Enter your logic here...
Examples:
Input: 'Meow',1
Output: 'M'
Explanation: 'M' is the 1st letter.
Input: 'Javascript',6
Output: 'c'
Explanation: 'c' is the 6th letter.