Drop links or images here to add them to the editor.

Greeting Function

Create a function named saludar.

The function must receive a name and print a greeting with this format:

Hola, nombre!

Required function

void saludar(string nombre)

Input

A name.

Output

The greeting with the name.

Example

Input:

Maria

Output:

Hola, Maria!