public static void Main()
string name = Console.ReadLine();
string lastname = Console.ReadLine();
string age = Console.ReadLine();
string town = Console.ReadLine();
Console.WriteLine("you are " + name + lastname , "a" + age , "years old person from" + town );