public static void Main()
P.Main(new string[]{ "HELLO WORLD", "LORD" });
P.Main(new string[]{ "CODE GOLF AND CODING CHALLENGES", "DANGLE" });
P.Main(new string[]{ "SANDBOX FOR PROPOSED CHALLENGES", "CODE" });
P.Main(new string[]{ "HELLO WORLD", "LLLD" });
P.Main(new string[]{ "HELLO WORLD", "LLDL" });
P.Main(new string[]{ "NEW YORK POLICE DEPARTMENT", "NOODLE" });
P.Main(new string[]{ "MASSACHUSETTS INSTITUTE OF TECHNOLOGY", "MUTTON" });
P.Main(new string[]{ "BOB", "BOB" });
P.Main(new string[]{ "PRESIDENT OF THE UNITED STATES", "I" });
public class P{public static void Main(string[]a){int q=0;int e=a[1].Length;foreach(char c in a[0])if(q!=e&&c==a[1][q])q++;System.Console.Write(q==e);}}