/*
Given the words in first list of strings (listStr1) and the second list of string (listStr2), print Yes if listStr2 can be create using whole words from listStr1; otherwise, print No.
For example, if listStr2 is "Attack at dawn” and listStr1 is "attack at dawn". listStr2 has all the right words, but there's a case mismatch. The answer is No .
Input
• listStr1: an array of strings (1 to 1,000,000 words)
• listStr2: an array of strings (1 to 1,000,000 words)
Example1:
listStr1 - give me one apple today evening
listStr2 - give one apple today
Answer: Yes
Example 2:
listStr1 - two times three is not four
listStr2 - two times two is four
Answer: No - 'two' only occurs once in listStr1.
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}