using System.Collections.Generic;
public static void Main()
Console.WriteLine("What is the name of the company?");
string name = (Console.ReadLine());
Console.WriteLine("What is its address?");
string address = (Console.ReadLine());
Console.WriteLine("What is the telephone nomer of the company?");
string telnomer = (Console.ReadLine());
Console.WriteLine("What is the fax nomer of the company?");
string faxnomer = (Console.ReadLine());
Console.WriteLine("What is the website of the company?");
string website = (Console.ReadLine());
Console.WriteLine("What are the name and the surname of the manager?");
string managername = (Console.ReadLine());
Console.WriteLine("What is the telephone nomer of the manager?");
string managernomer = (Console.ReadLine());
Console.WriteLine("How old is the manager?");
string years = (Console.ReadLine());
Console.WriteLine("Company Info:");
Console.WriteLine("Name: " + name);
Console.WriteLine("Address: " + address);
Console.WriteLine("Telephone nomer: " + telnomer);
Console.WriteLine("Fax nomer: " + faxnomer);
Console.WriteLine("Website: " + faxnomer);
Console.WriteLine("Manager: ");
Console.WriteLine("Name: " + managername);
Console.WriteLine("Telephone nomer: " + managernomer);
Console.WriteLine("Age:");