using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello what is your name ?");
string name = Console.ReadLine();
int age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(" Hello, {0}, you are (1) years old", name, age);
}