IntPalindrome/Mik
IntPalindrome/Rizvan Zaidullin
n1number = int(input())n1num = int(input())
2temp = number2tmp = num
3pal = 03pal = 0
t4while temp > 0:t4while tmp != 0:
5    pal = pal * 10 + temp % 105    pal = pal * 10 + tmp % 10
6    temp = int(temp / 10)6    tmp = tmp // 10
7if pal == number:7if pal == num:
8    print('YES')8    print('YES')
9else:9else:
10    print('NO')10    print('NO')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op