Generate all palindromic numbers less than n
Find all numbers less than n, which are palindromic. Numbers can be printed in any order. Examples : Input : n = 12Output : 1, 2, 3, 4, 5, 6, 7, 8, 9, 11Input : n = 104Output : 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44, 55, 66, 77, 88, 99, 101[Note that below program prints these numbers in differen