summaryrefslogtreecommitdiff
path: root/progs/a684.py
blob: 03db71e359cfd371d57c56222f60d9526cc1a86a (plain)
1
2
3
4
5
6
7
8
def find_demlo(s): 
	l = len(s) 
	res = "" 
	for i in range(1,l+1): 
		res = res + str(i) 
	for i in range(l-1,0,-1): 
		res = res + str(i) 
	return res