#Z15405. 练68.2 字符串判等

练68.2 字符串判等

Description

Determine whether two strings composed of uppercase letters, lowercase letters, and spaces are equal after ignoring case and spaces.

Input Format

Two lines, each containing a string; the length of each string does not exceed 100100.

Output Format

If the two strings are equal, output "YESYES"; otherwise, output "NONO".

Sample

a A bb BB ccc CCC
Aa BBbb CCCccc
YES