Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created December 10, 2017 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whatalnk/b15ac9329263ec138d684b71e472c760 to your computer and use it in GitHub Desktop.
Save whatalnk/b15ac9329263ec138d684b71e472c760 to your computer and use it in GitHub Desktop.
AtCoder ABC #077
r1 = input()
r2 = input()
if r1 == r2[::-1] and r2 == r1[::-1]:
print("YES")
else:
print("NO")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment