using System;
// Create a deck of playing cards containing only non-face cards (1-10) of each suit: Hearts, Diamonds, Clubs and Spades.
// As a result you will have 40 cards in the deck.
// Display to the console each card’s suit and number in the ordered, unshuffled deck.
// Shuffle the deck of cards and display to the console each card’s suit and number in the shuffled deck
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}