Problem2450--字符串是否相等(不含空格)

2450: 字符串是否相等(不含空格)

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Status] [Submit] [Creator:]

Description

输入两个字符串,判断他们是否相等。(两个字符串的长度均小于20)

Input

一行:两个用空格分割的字符串。

Output

一行:如果两个字符串完全一致输出yes,否则输出no。

Sample Input Copy

abc abcde

Sample Output Copy

no

Source/Category