You need a username and a password to login. A username consists only of lowercase letters and is composed of the first letter of your first name and the letters of your last name.

Assignment

Determine the username of a person. This is done in the following way:

Example

>>> first_letter('Sansa')
'S'
>>> first_letter('Jon')
'J'

>>> username('Sansa', 'Stark')
'sstark'
>>> username('Jon', 'Snow')
'jsnow'