public static void Main()
Console.WriteLine("Hello World");
Console.WriteLine("I really need to brush up on this stuff... LET'S EXPERIMENT!!!");
Console.WriteLine("Let's play with card statistics... How many copies of the card in question are there in the deck?");
int CardCopies = int.Parse(Console.ReadLine());
Console.WriteLine("Ok, how many cards are in the deck?");
int DeckCards = int.Parse(Console.ReadLine());
Console.WriteLine("Right. Now I need the program to figure out how much of the deck is made up by those cards. So it should be Copies / Cards = percentage.");
int CardAbundance = CardCopies / DeckCards;