using System;
public class Program
{
public static void Main()
bool bestochen = true;
bool response = callCops(bestochen);
Console.WriteLine(response);
}
public static bool callCops(bool bestochen)
int chance = bestochen ? 15 : 75;
Random random = new Random();
if (random.Next(0, 150) <= chance)
return true;
else
return false;