Great job finishing the first exercises! Now let's put it all together.
Imagine you're sending a letter. You need to print an envelope with a name, street address, city, state, and zip code.
Here's an example of what the envelope might look like:
print('+------------------------------+')
print('| |')
print('| Ada Lovelace |')
print('| 123 Code Street |')
print('| London, UK 10001 |')
print('| |')
print('+------------------------------+')