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:
Instructions
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
s1 = input()
s2 = input()
print(s1 + "\\" + s2)
if s1 == s2:
print("Equal")
Comments
Leave a comment