Write a program that asks for your name and your age. The program must then print a sentence that described your name and your age.

Input

A line containing the name of a person, followed by a line containing the age of that person.

Output

A sentence describing the name and the age of the person, using the following format

name is age years old.

Example

Input:

Alice
9

Output:

Alice is 9 years old.