Do you believe in doppelgangers? Well they are very much possible with strings! Check if the two given strings are the same or not.
Instructions:
- Input two strings in different lines (one each line).
- Print out the strings in one line, separate them with a \.
- Check whether the two strings are equal, print out "Equal" if they are.
Instructions
- Input two strings in different lines (one each line).
- Print out the strings in one line, separate them with a \.
- Check whether the two strings are equal, print out "Equal" if they are.
Input
Two lines containing a string on each.
hello
hello
Output
The first line contains the two inputted strings separated by a \.
The second line contains a string result.
hello\hello
Equal
Comments