public static void Main()
Console.WriteLine("Inform the n1: ");
n1 = int.Parse(Console.ReadLine());
Console.WriteLine("Inform the ch: ");
ch = char.Parse(Console.ReadLine());
Console.WriteLine("Inform the n2: ");
n2 = double.Parse(Console.ReadLine());
Console.WriteLine("Inform the name, sex, age and height: ");
string[] vector = Console.ReadLine().Split(' ');
sex = char.Parse(vector[1]);
age = int.Parse(vector[2]);
height = double.Parse(vector[3]);
Console.WriteLine("You Typed: " + n1);
Console.WriteLine("You Typed: " + ch);
Console.WriteLine("You Typed: " + n2);
Console.WriteLine(name + " " + sex + " " + age + " " + height);