14. Given a list of integers, write a program to find those which are palindromes. For example, the number 4321234 is a palindrome as it reads the same from left to right and from right to left.

l = input(‘Enter a list of numbers : ‘).split()
for num in l:
for i in range(len(num)//2):
if num[i] != num[-(i+1)]:
break
else:
print(num, ‘is a palindrome’)