using System;
public class Program
{
public static void Main()
string n;
int edad;
Console.WriteLine("Escribe tu nombre");
n = Console.ReadLine();
Console.WriteLine("Escribe tu edad");
edad = int.Parse(Console.ReadLine());
Console.WriteLine("Te llamas " + n );
Console.WriteLine("Tu edad es:" + edad);
}