SDE Path

Check Two Words Are Equal

Easy

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 code
Expected output
true
Example 2
Input
cat dog
Expected output
false