Write a program that asks the user for the five parts of their address, then displays the full address in a formatted block.

Input

The program should prompt for the following, in order:

  1. Enter your street:
  2. Enter your town:
  3. Enter your city:
  4. Enter your county:
  5. Enter your postcode:

Output

Your address is:
street
town
city
county
postcode

Example

Input:

20 South Drive
Allworth
Winchester
Hampshire
SO22 4DC

Output:

Your address is:
20 South Drive
Allworth
Winchester
Hampshire
SO22 4DC