using System;
using System.Linq;
class Program
{
static void Main()
{
string word1 = "forest";
string word2 = "tor";
// Remove characters from word1 that exist in word2
string result = new string(word1.Where(ch => !word2.Contains(ch)).ToArray());
Console.WriteLine($"Result: {result}");
}
}
/*
run:
Result: fes
*/