static bool exit = false;
static BigInteger totalCount = 0;
public static void Main()
Console.WriteLine("You kicked hatemachine in the cunt a total of {0} time{1}.", totalCount.ToString("R"), (totalCount == 1 ? "" : "s"));
public static void RunCuntKicks()
Console.WriteLine("How many hatemachine cunt kicks? [type exit to stop playing]");
string input = Console.ReadLine();
if (input.Trim().ToLower() == "exit")
if (!BigInteger.TryParse(input, out kicks))
Console.WriteLine("Invalid input, try again fuckwad!");
Console.WriteLine("You pussy, try again !!!");
for (int i = 1; i <= kicks; i++)
Console.WriteLine("hatemachine has been kicked in the cunt {0} time{1}...", i, (i == 1 ? "" : "s"));