Skip to content

Commit 776f3f1

Browse files
committed
solution of 41A - Translation
1 parent 26b6040 commit 776f3f1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

41A - Translation.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# user: Mousa-mahmood-hilal
2+
#Problem: codeforces 41A - Translation
3+
s=input()
4+
s1=input()
5+
s1=s1[::-1]
6+
if s==s1:
7+
print('YES')
8+
else:
9+
print('NO')

0 commit comments

Comments
 (0)