public static void Main()
Console.WriteLine("Въведете вашата възраст: ");
ing age = int.Parse(Console.Rideline());
Console.WriteLine("Имате ли VIP карта (въведете 'да' или 'не'): ");
string hasVipcard = Console.ReadLine();
bool isAdult = age >= 18;
bool hasPermission = (hasVipcard == "да");
if (isAdult && hasPermission)
{ Console.WriteLine("Вие имате право да влезете в клуба."); }
{ Console.WriteLine("Съжеляваме, не можете да влезете."); }