Vasya decided to write an anonymous letter cutting the letters out of a newspaper heading. He knows heading s 1 and text s 2 that he wants to send. Vasya can use every single heading letter no more than once. Vasya doesn't have to cut the spaces out of the heading — he just leaves some blank space to mark them. Help him; find out if he will manage to compose the needed text.
输入描述:
The first line contains a newspaper heading s1. The second line contains the letter text s2. s1 и s2 are non-empty lines consisting of spaces, uppercase and lowercase Latin letters, whose lengths do not exceed 200 symbols. The uppercase and lowercase letters should be differentiated. Vasya does not cut spaces out of the heading.
输出描述:
If Vasya can write the given anonymous letter, print YES, otherwise print NO
示例1
输入
Instead of dogging Your footsteps it disappears but you dont notice anything<br />where is your dog<br />Instead of dogging Your footsteps it disappears but you dont notice anything<br />Your dog is upstears<br />Instead of dogging your footsteps it disappears but you dont notice anything<br />Your dog is upstears<br />abcdefg hijk<br />k j i h g f e d c b a<br />
输出
NO<br />YES<br />NO<br />YES<br />
加载中...