Check Two Words Are Equal
Decide whether two words are exactly the same.
Input format
A single line with two words A and B, separated by a space.
Output format
Print true if A and B are exactly equal, otherwise false.
Constraints
- Values fit in a 64-bit signed integer
- Trailing whitespace and a trailing newline are ignored by the judge
Read from stdin, write to stdout. Sample cases below show the exact format.
Sample cases
Example 1
Input
code codeExpected output
trueExample 2
Input
cat dogExpected output
false