using System; using System.Collections.Generic; namespace ConsoleApp1 { class Program { static void Main(string[] args) { #if LocalDebug var exStdIn = new System.IO.StreamReader("stdin.txt"); System.Console.SetIn(exStdIn); #endif var Input1 = Console.ReadLine(); var Input2 = Console.ReadLine(); var Result = "YES"; for (int i = 0; i < Input1.Length; i++) { var str = Input1[i].ToString(); if (Input2.Contains(str)) { Input2 = Input2.Remove(Input2.IndexOf(str), 1); } else { Result = "NO"; break; } } Console.WriteLine(Result); #if LocalDebug System.Console.ReadKey(); #endif } static int GetData() { return int.Parse(Console.ReadLine()); } static string[] GetList() { return Console.ReadLine().Split(' '); } } }