#P394. 练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 .
Output Format
If the two strings are equal, output ""; otherwise, output "".
Sample
a A bb BB ccc CCC
Aa BBbb CCCcccYES