CF43B.Letter

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya decided to write an anonymous letter cutting the letters out of a newspaper heading. He knows heading s1s_{1} and text s2s_{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 s1s_{1} . The second line contains the letter text s2s_{2} . s1s_{1} и s2s_{2} 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
    where is your dog
    

    输出#1

    NO
    
  • 输入#2

    Instead of dogging Your footsteps it disappears but you dont notice anything
    Your dog is upstears
    

    输出#2

    YES
    
  • 输入#3

    Instead of dogging your footsteps it disappears but you dont notice anything
    Your dog is upstears
    

    输出#3

    NO
    
  • 输入#4

    abcdefg hijk
    k j i h g f e d c b a
    

    输出#4

    YES
    
首页