python-algorithm
codeforces 41A - Translation
무적김두칠
2022. 4. 28. 16:31
1
2
3
4
|
s1 = input()
s2 = input()
if s1 == s2[::-1] : print("YES")
else : print("NO")
|
cs |
반응형