Build and return a sentence using the given dict as shown in the example.
Sample Code:
def whatAmI(d):
# Enter your logic here...
Examples:
Input: {'name':'human','lang':'English'}
Output: 'I am human and I speak English.'
Explanation: 'human' and 'English' are the first and second values of the dict respectively.
Input: {'name':'another human','lang':'Python'}
Output: 'I am another human and I speak Python.'
Explanation: 'another human' and 'Python' are the first and second values of the dict respectively.