public static void Main()
Console.WriteLine("Въведи име ");
string ime = Console.ReadLine();
Console.WriteLine("Въведи презиме");
string prez= Console.ReadLine();
Console.WriteLine("Въведи фамилия");
string lastname = Console.ReadLine();
Console.WriteLine("Въведи рожденна дата");
string аге = Console.ReadLine();
Console.WriteLine("Въведи място на раждане");
string place = Console.ReadLine();
Console.WriteLine("Въведи училище");
string school = Console.ReadLine();
Console.WriteLine("Въведи клас");
string clas = Console.ReadLine();
Console.WriteLine("Въведи номер");
string num = Console.ReadLine();
Console.WriteLine("Въведи профил");
string pro = Console.ReadLine();
Console.WriteLine ("Справка за данните на " + ime +" " + prez + " " + lastname );
Console.WriteLine("Роден на " + аге);
Console.WriteLine("Роден в " + place);
Console.WriteLine("учи в " + school);
Console.WriteLine("от клас: " + clas);
Console.WriteLine("номер в клас: " + num);
Console.WriteLine("учи в профил : " + pro);