Write a program that prompts the user for the following details and displays a formatted profile using string concatenation (the + operator).

Input

The program should prompt for the following, in order:

  1. Enter your name:
  2. Enter your favourite colour:
  3. Enter your age:
  4. Enter your height in metres:
  5. Enter your gender:
  6. Enter your year group:

Output

Name: name
Colour: colour
Age: age
Height: height
Gender: gender
Year group: year_group

Important:

Example

Input:

Alice
blue
14
1.65
female
9

Output:

Name: Alice
Colour: blue
Age: 14
Height: 1.65
Gender: female
Year group: 9