using System.Collections;
using System.Collections.Generic;
public static void Main()
var FWR = new List<string>();
var MWR = new List<string>();
var EU = new List<string>{"Albania","Andorra","Armenia","Austria","Azerbaijan","Belarus","Belgium","Bosnia","Bulgaria","Croatia","Cyprus","Czech Republic","Denmark","Estonia","Finland","France","Georgia","Germany","Greece","Hungary","Iceland","Ireland","Italy","Kosovo","Latvia","Liechtenstein","Lithuania","Luxembourg","Macedonia","Malta","Moldova","Monaco","Montenegro","The Netherlands","Norway","Poland","Portugal","Romania","Russia","San Marino","Serbia","Slovakia","Slovenia","Spain","Sweden","Switzerland","Turkey","Ukraine","England","Vatican City"};
var Nationality = new List<string>();
var RacerTimes = new List<int>();
var NRaceTimes = new List<int>();
Console.WriteLine("Is this a female or male race");
string Type = Console.ReadLine();
Console.WriteLine("How many lanes are there");
int Lanes = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("In lane order type all times for the atheletes and their country");
for (int i = 0; i < Lanes; i++)
int Time = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("What country are they from (make sure to use a capital for the start)");
string Country = Console.ReadLine();
Nationality.Add(Country);
foreach (object M in RacerTimes)
foreach (object M in Nationality)
foreach (object M in NRaceTimes)
for (int i = 0; i < NRaceTimes.Count; i++)
if (Nationality[i] == "England")
Console.WriteLine("British and European and World record holder");
else if (NRaceTimes[i] < 7)
Console.WriteLine("British and European");
else if (NRaceTimes[i] < 9)
Console.WriteLine("British record");