-->
当前位置:首页 > 题库

PROGRAMMING:String grading

Luz5年前 (2021-05-10)题库377
Determine whether two strings composed of uppercase and lowercase letters and spaces are equal after ignoring case and spaces.
###Input format:
Two lines, each containing a string. If two strings are equal, output yes, otherwise output No.
###Output format:
Please describe the output format here. For example, for each group of inputs, output the value of a + B in one line.
###Input example:
Example 1
```in
a A bb BB ccc CCC
Aa BBbb CCCccc
```
Example 2
```in
a A bb BB ccc CCCa
Aa BBbb CCCccc
```
###Output example:
Example 1
```out
YES
```
Example 2
```out
NO
```






answer:If there is no answer, please comment