9 lines
99 B
Python
9 lines
99 B
Python
s = input("s: ")
|
|
t = input ("t: ")
|
|
|
|
if s == t:
|
|
print("Same")
|
|
else:
|
|
print("Different")
|
|
|